corrade-nucleus-nucleons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /**
2 * @license Highmaps JS v5.0.10 (2017-03-31)
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.10',
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 charts: [],
55 marginNames: ['plotTop', 'marginRight', 'marginBottom', 'plotLeft'],
56 noop: function() {
57 return undefined;
58 }
59 };
60 return Highcharts;
61 }());
62 (function(H) {
63 /**
64 * (c) 2010-2017 Torstein Honsi
65 *
66 * License: www.highcharts.com/license
67 */
68 /* eslint max-len: ["warn", 80, 4] */
69  
70 /**
71 * The Highcharts object is the placeholder for all other members, and various
72 * utility functions.
73 * @namespace Highcharts
74 */
75  
76 var timers = [];
77  
78 var charts = H.charts,
79 doc = H.doc,
80 win = H.win;
81  
82 /**
83 * Provide error messages for debugging, with links to online explanation. This
84 * function can be overridden to provide custom error handling.
85 *
86 * @function #error
87 * @memberOf Highcharts
88 * @param {Number|String} code - The error code. See [errors.xml]{@link
89 * https://github.com/highcharts/highcharts/blob/master/errors/errors.xml}
90 * for available codes. If it is a string, the error message is printed
91 * directly in the console.
92 * @param {Boolean} [stop=false] - Whether to throw an error or just log a
93 * warning in the console.
94 */
95 H.error = function(code, stop) {
96 var msg = H.isNumber(code) ?
97 'Highcharts error #' + code + ': www.highcharts.com/errors/' + code :
98 code;
99 if (stop) {
100 throw new Error(msg);
101 }
102 // else ...
103 if (win.console) {
104 console.log(msg); // eslint-disable-line no-console
105 }
106 };
107  
108 /**
109 * An animator object. One instance applies to one property (attribute or style
110 * prop) on one element.
111 *
112 * @constructor Fx
113 * @memberOf Highcharts
114 * @param {HTMLDOMElement|SVGElement} elem - The element to animate.
115 * @param {AnimationOptions} options - Animation options.
116 * @param {string} prop - The single attribute or CSS property to animate.
117 */
118 H.Fx = function(elem, options, prop) {
119 this.options = options;
120 this.elem = elem;
121 this.prop = prop;
122 };
123 H.Fx.prototype = {
124  
125 /**
126 * Set the current step of a path definition on SVGElement.
127 *
128 * @function #dSetter
129 * @memberOf Highcharts.Fx
130 */
131 dSetter: function() {
132 var start = this.paths[0],
133 end = this.paths[1],
134 ret = [],
135 now = this.now,
136 i = start.length,
137 startVal;
138  
139 // Land on the final path without adjustment points appended in the ends
140 if (now === 1) {
141 ret = this.toD;
142  
143 } else if (i === end.length && now < 1) {
144 while (i--) {
145 startVal = parseFloat(start[i]);
146 ret[i] =
147 isNaN(startVal) ? // a letter instruction like M or L
148 start[i] :
149 now * (parseFloat(end[i] - startVal)) + startVal;
150  
151 }
152 // If animation is finished or length not matching, land on right value
153 } else {
154 ret = end;
155 }
156 this.elem.attr('d', ret, null, true);
157 },
158  
159 /**
160 * Update the element with the current animation step.
161 *
162 * @function #update
163 * @memberOf Highcharts.Fx
164 */
165 update: function() {
166 var elem = this.elem,
167 prop = this.prop, // if destroyed, it is null
168 now = this.now,
169 step = this.options.step;
170  
171 // Animation setter defined from outside
172 if (this[prop + 'Setter']) {
173 this[prop + 'Setter']();
174  
175 // Other animations on SVGElement
176 } else if (elem.attr) {
177 if (elem.element) {
178 elem.attr(prop, now, null, true);
179 }
180  
181 // HTML styles, raw HTML content like container size
182 } else {
183 elem.style[prop] = now + this.unit;
184 }
185  
186 if (step) {
187 step.call(elem, now, this);
188 }
189  
190 },
191  
192 /**
193 * Run an animation.
194 *
195 * @function #run
196 * @memberOf Highcharts.Fx
197 * @param {Number} from - The current value, value to start from.
198 * @param {Number} to - The end value, value to land on.
199 * @param {String} [unit] - The property unit, for example `px`.
200 * @returns {void}
201 */
202 run: function(from, to, unit) {
203 var self = this,
204 timer = function(gotoEnd) {
205 return timer.stopped ? false : self.step(gotoEnd);
206 },
207 i;
208  
209 this.startTime = +new Date();
210 this.start = from;
211 this.end = to;
212 this.unit = unit;
213 this.now = this.start;
214 this.pos = 0;
215  
216 timer.elem = this.elem;
217 timer.prop = this.prop;
218  
219 if (timer() && timers.push(timer) === 1) {
220 timer.timerId = setInterval(function() {
221  
222 for (i = 0; i < timers.length; i++) {
223 if (!timers[i]()) {
224 timers.splice(i--, 1);
225 }
226 }
227  
228 if (!timers.length) {
229 clearInterval(timer.timerId);
230 }
231 }, 13);
232 }
233 },
234  
235 /**
236 * Run a single step in the animation.
237 *
238 * @function #step
239 * @memberOf Highcharts.Fx
240 * @param {Boolean} [gotoEnd] - Whether to go to the endpoint of the
241 * animation after abort.
242 * @returns {Boolean} Returns `true` if animation continues.
243 */
244 step: function(gotoEnd) {
245 var t = +new Date(),
246 ret,
247 done,
248 options = this.options,
249 elem = this.elem,
250 complete = options.complete,
251 duration = options.duration,
252 curAnim = options.curAnim,
253 i;
254  
255 if (elem.attr && !elem.element) { // #2616, element is destroyed
256 ret = false;
257  
258 } else if (gotoEnd || t >= duration + this.startTime) {
259 this.now = this.end;
260 this.pos = 1;
261 this.update();
262  
263 curAnim[this.prop] = true;
264  
265 done = true;
266 for (i in curAnim) {
267 if (curAnim[i] !== true) {
268 done = false;
269 }
270 }
271  
272 if (done && complete) {
273 complete.call(elem);
274 }
275 ret = false;
276  
277 } else {
278 this.pos = options.easing((t - this.startTime) / duration);
279 this.now = this.start + ((this.end - this.start) * this.pos);
280 this.update();
281 ret = true;
282 }
283 return ret;
284 },
285  
286 /**
287 * Prepare start and end values so that the path can be animated one to one.
288 *
289 * @function #initPath
290 * @memberOf Highcharts.Fx
291 * @param {SVGElement} elem - The SVGElement item.
292 * @param {String} fromD - Starting path definition.
293 * @param {Array} toD - Ending path definition.
294 * @returns {Array} An array containing start and end paths in array form
295 * so that they can be animated in parallel.
296 */
297 initPath: function(elem, fromD, toD) {
298 fromD = fromD || '';
299 var shift,
300 startX = elem.startX,
301 endX = elem.endX,
302 bezier = fromD.indexOf('C') > -1,
303 numParams = bezier ? 7 : 3,
304 fullLength,
305 slice,
306 i,
307 start = fromD.split(' '),
308 end = toD.slice(), // copy
309 isArea = elem.isArea,
310 positionFactor = isArea ? 2 : 1,
311 reverse;
312  
313 /**
314 * In splines make moveTo and lineTo points have six parameters like
315 * bezier curves, to allow animation one-to-one.
316 */
317 function sixify(arr) {
318 var isOperator,
319 nextIsOperator;
320 i = arr.length;
321 while (i--) {
322  
323 // Fill in dummy coordinates only if the next operator comes
324 // three places behind (#5788)
325 isOperator = arr[i] === 'M' || arr[i] === 'L';
326 nextIsOperator = /[a-zA-Z]/.test(arr[i + 3]);
327 if (isOperator && nextIsOperator) {
328 arr.splice(
329 i + 1, 0,
330 arr[i + 1], arr[i + 2],
331 arr[i + 1], arr[i + 2]
332 );
333 }
334 }
335 }
336  
337 /**
338 * Insert an array at the given position of another array
339 */
340 function insertSlice(arr, subArr, index) {
341 [].splice.apply(
342 arr, [index, 0].concat(subArr)
343 );
344 }
345  
346 /**
347 * If shifting points, prepend a dummy point to the end path.
348 */
349 function prepend(arr, other) {
350 while (arr.length < fullLength) {
351  
352 < fullLength) { // Move to, line to or curve to?
353 < fullLength) { arr[0] = other[fullLength - arr.length];
354  
355 < fullLength) { // Prepend a copy of the first point
356 < fullLength) { insertSlice(arr, arr.slice(0, numParams), 0);
357  
358 < fullLength) { // For areas, the bottom path goes back again to the left, so we
359 < fullLength) { // need to append a copy of the last point.
360 < fullLength) { if (isArea) {
361 < fullLength) { insertSlice(
362 < fullLength) { arr,
363 < fullLength) { arr.slice(arr.length - numParams), arr.length
364 < fullLength) { );
365 < fullLength) { i--;
366 < fullLength) { }
367 < fullLength) { }
368 < fullLength) { arr[0] = 'M';
369 < fullLength) { }
370  
371 < fullLength) { /**
372 < fullLength) { * Copy and append last point until the length matches the end length
373 < fullLength) { */
374 < fullLength) { function append(arr, other) {
375 < fullLength) { var i = (fullLength - arr.length) / numParams;
376 < fullLength) { while (i > 0 && i--) {
377  
378 < fullLength) { // Pull out the slice that is going to be appended or inserted.
379 < fullLength) { // In a line graph, the positionFactor is 1, and the last point
380 < fullLength) { // is sliced out. In an area graph, the positionFactor is 2,
381 < fullLength) { // causing the middle two points to be sliced out, since an area
382 < fullLength) { // path starts at left, follows the upper path then turns and
383 < fullLength) { // follows the bottom back.
384 < fullLength) { slice = arr.slice().splice(
385 < fullLength) { (arr.length / positionFactor) - numParams,
386 < fullLength) { numParams * positionFactor
387 < fullLength) { );
388  
389 < fullLength) { // Move to, line to or curve to?
390 < fullLength) { slice[0] = other[fullLength - numParams - (i * numParams)];
391  
392 < fullLength) { // Disable first control point
393 < fullLength) { if (bezier) {
394 < fullLength) { slice[numParams - 6] = slice[numParams - 2];
395 < fullLength) { slice[numParams - 5] = slice[numParams - 1];
396 < fullLength) { }
397  
398 < fullLength) { // Now insert the slice, either in the middle (for areas) or at
399 < fullLength) { // the end (for lines)
400 < fullLength) { insertSlice(arr, slice, arr.length / positionFactor);
401  
402 < fullLength) { if (isArea) {
403 < fullLength) { i--;
404 < fullLength) { }
405 < fullLength) { }
406 < fullLength) { }
407  
408 < fullLength) { if (bezier) {
409 < fullLength) { sixify(start);
410 < fullLength) { sixify(end);
411 < fullLength) { }
412  
413 < fullLength) { // For sideways animation, find out how much we need to shift to get the
414 < fullLength) { // start path Xs to match the end path Xs.
415 < fullLength) { if (startX && endX) {
416 < fullLength) { for (i = 0; i < startX.length; i++) {
417 < fullLength) { // Moving left, new points coming in on right
418 < fullLength) { if (startX[i] === endX[0]) {
419 < fullLength) { shift = i;
420 < fullLength) { break;
421 < fullLength) { // Moving right
422 < fullLength) { } else if (startX[0] ===
423 < fullLength) { endX[endX.length - startX.length + i]) {
424 < fullLength) { shift = i;
425 < fullLength) { reverse = true;
426 < fullLength) { break;
427 < fullLength) { }
428 < fullLength) { }
429 < fullLength) { if (shift === undefined) {
430 < fullLength) { start = [];
431 < fullLength) { }
432 < fullLength) { }
433  
434 < fullLength) { if (start.length && H.isNumber(shift)) {
435  
436 < fullLength) { // The common target length for the start and end array, where both
437 < fullLength) { // arrays are padded in opposite ends
438 < fullLength) { fullLength = end.length + shift * positionFactor * numParams;
439  
440 < fullLength) { if (!reverse) {
441 < fullLength) { prepend(end, start);
442 < fullLength) { append(start, end);
443 < fullLength) { } else {
444 < fullLength) { prepend(start, end);
445 < fullLength) { append(end, start);
446 < fullLength) { }
447 < fullLength) { }
448  
449 < fullLength) { return [start, end];
450 < fullLength) { }
451 < fullLength) { }; // End of Fx prototype
452  
453  
454 < fullLength) { /**
455 < fullLength) { * Utility function to extend an object with the members of another.
456 < fullLength) { *
457 < fullLength) { * @function #extend
458 < fullLength) { * @memberOf Highcharts
459 < fullLength) { * @param {Object} a - The object to be extended.
460 < fullLength) { * @param {Object} b - The object to add to the first one.
461 < fullLength) { * @returns {Object} Object a, the original object.
462 < fullLength) { */
463 < fullLength) { H.extend = function(a, b) {
464 < fullLength) { var n;
465 < fullLength) { if (!a) {
466 < fullLength) { a = {};
467 < fullLength) { }
468 < fullLength) { for (n in b) {
469 < fullLength) { a[n] = b[n];
470 < fullLength) { }
471 < fullLength) { return a;
472 < fullLength) { };
473  
474 < fullLength) { /**
475 < fullLength) { * Utility function to deep merge two or more objects and return a third object.
476 < fullLength) { * If the first argument is true, the contents of the second object is copied
477 < fullLength) { * into the first object. The merge function can also be used with a single
478 < fullLength) { * object argument to create a deep copy of an object.
479 < fullLength) { *
480 < fullLength) { * @function #merge
481 < fullLength) { * @memberOf Highcharts
482 < fullLength) { * @param {Boolean} [extend] - Whether to extend the left-side object (a) or
483 < fullLength) { return a whole new object.
484 < fullLength) { * @param {Object} a - The first object to extend. When only this is given, the
485 < fullLength) { function returns a deep copy.
486 < fullLength) { * @param {...Object} [n] - An object to merge into the previous one.
487 < fullLength) { * @returns {Object} - The merged object. If the first argument is true, the
488 < fullLength) { * return is the same as the second argument.
489 < fullLength) { */
490 < fullLength) { H.merge = function() {
491 < fullLength) { var i,
492 < fullLength) { args = arguments,
493 < fullLength) { len,
494 < fullLength) { ret = {},
495 < fullLength) { doCopy = function(copy, original) {
496 < fullLength) { var value, key;
497  
498 < fullLength) { // An object is replacing a primitive
499 < fullLength) { if (typeof copy !== 'object') {
500 < fullLength) { copy = {};
501 < fullLength) { }
502  
503 < fullLength) { for (key in original) {
504 < fullLength) { if (original.hasOwnProperty(key)) {
505 < fullLength) { value = original[key];
506  
507 < fullLength) { // Copy the contents of objects, but not arrays or DOM nodes
508 < fullLength) { if (H.isObject(value, true) &&
509 < fullLength) { key !== 'renderTo' &&
510 < fullLength) { typeof value.nodeType !== 'number') {
511 < fullLength) { copy[key] = doCopy(copy[key] || {}, value);
512  
513 < fullLength) { // Primitives and arrays are copied over directly
514 < fullLength) { } else {
515 < fullLength) { copy[key] = original[key];
516 < fullLength) { }
517 < fullLength) { }
518 < fullLength) { }
519 < fullLength) { return copy;
520 < fullLength) { };
521  
522 < fullLength) { // If first argument is true, copy into the existing object. Used in
523 < fullLength) { // setOptions.
524 < fullLength) { if (args[0] === true) {
525 < fullLength) { ret = args[1];
526 < fullLength) { args = Array.prototype.slice.call(args, 2);
527 < fullLength) { }
528  
529 < fullLength) { // For each argument, extend the return
530 < fullLength) { len = args.length;
531 < fullLength) { for (i = 0; i < len; i++) {
532 < fullLength) { ret = doCopy(ret, args[i]);
533 < fullLength) { }
534  
535 < fullLength) { return ret;
536 < fullLength) { };
537  
538 < fullLength) { /**
539 < fullLength) { * Shortcut for parseInt
540 < fullLength) { * @ignore
541 < fullLength) { * @param {Object} s
542 < fullLength) { * @param {Number} mag Magnitude
543 < fullLength) { */
544 < fullLength) { H.pInt = function(s, mag) {
545 < fullLength) { return parseInt(s, mag || 10);
546 < fullLength) { };
547  
548 < fullLength) { /**
549 < fullLength) { * Utility function to check for string type.
550 < fullLength) { *
551 < fullLength) { * @function #isString
552 < fullLength) { * @memberOf Highcharts
553 < fullLength) { * @param {Object} s - The item to check.
554 < fullLength) { * @returns {Boolean} - True if the argument is a string.
555 < fullLength) { */
556 < fullLength) { H.isString = function(s) {
557 < fullLength) { return typeof s === 'string';
558 < fullLength) { };
559  
560 < fullLength) { /**
561 < fullLength) { * Utility function to check if an item is an array.
562 < fullLength) { *
563 < fullLength) { * @function #isArray
564 < fullLength) { * @memberOf Highcharts
565 < fullLength) { * @param {Object} obj - The item to check.
566 < fullLength) { * @returns {Boolean} - True if the argument is an array.
567 < fullLength) { */
568 < fullLength) { H.isArray = function(obj) {
569 < fullLength) { var str = Object.prototype.toString.call(obj);
570 < fullLength) { return str === '[object Array]' || str === '[object Array Iterator]';
571 < fullLength) { };
572  
573 < fullLength) { /**
574 < fullLength) { * Utility function to check if an item is of type object.
575 < fullLength) { *
576 < fullLength) { * @function #isObject
577 < fullLength) { * @memberOf Highcharts
578 < fullLength) { * @param {Object} obj - The item to check.
579 < fullLength) { * @param {Boolean} [strict=false] - Also checks that the object is not an
580 < fullLength) { * array.
581 < fullLength) { * @returns {Boolean} - True if the argument is an object.
582 < fullLength) { */
583 < fullLength) { H.isObject = function(obj, strict) {
584 < fullLength) { return obj && typeof obj === 'object' && (!strict || !H.isArray(obj));
585 < fullLength) { };
586  
587 < fullLength) { /**
588 < fullLength) { * Utility function to check if an item is of type number.
589 < fullLength) { *
590 < fullLength) { * @function #isNumber
591 < fullLength) { * @memberOf Highcharts
592 < fullLength) { * @param {Object} n - The item to check.
593 < fullLength) { * @returns {Boolean} - True if the item is a number and is not NaN.
594 < fullLength) { */
595 < fullLength) { H.isNumber = function(n) {
596 < fullLength) { return typeof n === 'number' && !isNaN(n);
597 < fullLength) { };
598  
599 < fullLength) { /**
600 < fullLength) { * Remove the last occurence of an item from an array.
601 < fullLength) { *
602 < fullLength) { * @function #erase
603 < fullLength) { * @memberOf Highcharts
604 < fullLength) { * @param {Array} arr - The array.
605 < fullLength) { * @param {*} item - The item to remove.
606 < fullLength) { */
607 < fullLength) { H.erase = function(arr, item) {
608 < fullLength) { var i = arr.length;
609 < fullLength) { while (i--) {
610 < fullLength) { if (arr[i] === item) {
611 < fullLength) { arr.splice(i, 1);
612 < fullLength) { break;
613 < fullLength) { }
614 < fullLength) { }
615 < fullLength) { };
616  
617 < fullLength) { /**
618 < fullLength) { * Check if an object is null or undefined.
619 < fullLength) { *
620 < fullLength) { * @function #defined
621 < fullLength) { * @memberOf Highcharts
622 < fullLength) { * @param {Object} obj - The object to check.
623 < fullLength) { * @returns {Boolean} - False if the object is null or undefined, otherwise
624 < fullLength) { * true.
625 < fullLength) { */
626 < fullLength) { H.defined = function(obj) {
627 < fullLength) { return obj !== undefined && obj !== null;
628 < fullLength) { };
629  
630 < fullLength) { /**
631 < fullLength) { * Set or get an attribute or an object of attributes. To use as a setter, pass
632 < fullLength) { * a key and a value, or let the second argument be a collection of keys and
633 < fullLength) { * values. To use as a getter, pass only a string as the second argument.
634 < fullLength) { *
635 < fullLength) { * @function #attr
636 < fullLength) { * @memberOf Highcharts
637 < fullLength) { * @param {Object} elem - The DOM element to receive the attribute(s).
638 < fullLength) { * @param {String|Object} [prop] - The property or an object of key-value pairs.
639 < fullLength) { * @param {String} [value] - The value if a single property is set.
640 < fullLength) { * @returns {*} When used as a getter, return the value.
641 < fullLength) { */
642 < fullLength) { H.attr = function(elem, prop, value) {
643 < fullLength) { var key,
644 < fullLength) { ret;
645  
646 < fullLength) { // if the prop is a string
647 < fullLength) { if (H.isString(prop)) {
648 < fullLength) { // set the value
649 < fullLength) { if (H.defined(value)) {
650 < fullLength) { elem.setAttribute(prop, value);
651  
652 < fullLength) { // get the value
653 < fullLength) { } else if (elem && elem.getAttribute) {
654 < fullLength) { ret = elem.getAttribute(prop);
655 < fullLength) { }
656  
657 < fullLength) { // else if prop is defined, it is a hash of key/value pairs
658 < fullLength) { } else if (H.defined(prop) && H.isObject(prop)) {
659 < fullLength) { for (key in prop) {
660 < fullLength) { elem.setAttribute(key, prop[key]);
661 < fullLength) { }
662 < fullLength) { }
663 < fullLength) { return ret;
664 < fullLength) { };
665  
666 < fullLength) { /**
667 < fullLength) { * Check if an element is an array, and if not, make it into an array.
668 < fullLength) { *
669 < fullLength) { * @function #splat
670 < fullLength) { * @memberOf Highcharts
671 < fullLength) { * @param obj {*} - The object to splat.
672 < fullLength) { * @returns {Array} The produced or original array.
673 < fullLength) { */
674 < fullLength) { H.splat = function(obj) {
675 < fullLength) { return H.isArray(obj) ? obj : [obj];
676 < fullLength) { };
677  
678 < fullLength) { /**
679 < fullLength) { * Set a timeout if the delay is given, otherwise perform the function
680 < fullLength) { * synchronously.
681 < fullLength) { *
682 < fullLength) { * @function #syncTimeout
683 < fullLength) { * @memberOf Highcharts
684 < fullLength) { * @param {Function} fn - The function callback.
685 < fullLength) { * @param {Number} delay - Delay in milliseconds.
686 < fullLength) { * @param {Object} [context] - The context.
687 < fullLength) { * @returns {Number} An identifier for the timeout that can later be cleared
688 < fullLength) { * with clearTimeout.
689 < fullLength) { */
690 < fullLength) { H.syncTimeout = function(fn, delay, context) {
691 < fullLength) { if (delay) {
692 < fullLength) { return setTimeout(fn, delay, context);
693 < fullLength) { }
694 < fullLength) { fn.call(0, context);
695 < fullLength) { };
696  
697  
698 < fullLength) { /**
699 < fullLength) { * Return the first value that is not null or undefined.
700 < fullLength) { *
701 < fullLength) { * @function #pick
702 < fullLength) { * @memberOf Highcharts
703 < fullLength) { * @param {...*} items - Variable number of arguments to inspect.
704 < fullLength) { * @returns {*} The value of the first argument that is not null or undefined.
705 < fullLength) { */
706 < fullLength) { H.pick = function() {
707 < fullLength) { var args = arguments,
708 < fullLength) { i,
709 < fullLength) { arg,
710 < fullLength) { length = args.length;
711 < fullLength) { for (i = 0; i < length; i++) {
712 < fullLength) { arg = args[i];
713 < fullLength) { if (arg !== undefined && arg !== null) {
714 < fullLength) { return arg;
715 < fullLength) { }
716 < fullLength) { }
717 < fullLength) { };
718  
719 < fullLength) { /**
720 < fullLength) { * @typedef {Object} CSSObject - A style object with camel case property names.
721 < fullLength) { * The properties can be whatever styles are supported on the given SVG or HTML
722 < fullLength) { * element.
723 < fullLength) { * @example
724 < fullLength) { * {
725 < fullLength) { * fontFamily: 'monospace',
726 < fullLength) { * fontSize: '1.2em'
727 < fullLength) { * }
728 < fullLength) { */
729 < fullLength) { /**
730 < fullLength) { * Set CSS on a given element.
731 < fullLength) { *
732 < fullLength) { * @function #css
733 < fullLength) { * @memberOf Highcharts
734 < fullLength) { * @param {HTMLDOMElement} el - A HTML DOM element.
735 < fullLength) { * @param {CSSObject} styles - Style object with camel case property names.
736 < fullLength) { * @returns {void}
737 < fullLength) { */
738 < fullLength) { H.css = function(el, styles) {
739 < fullLength) { if (H.isMS && !H.svg) { // #2686
740 < fullLength) { if (styles && styles.opacity !== undefined) {
741 < fullLength) { styles.filter = 'alpha(opacity=' + (styles.opacity * 100) + ')';
742 < fullLength) { }
743 < fullLength) { }
744 < fullLength) { H.extend(el.style, styles);
745 < fullLength) { };
746  
747 < fullLength) { /**
748 < fullLength) { * A HTML DOM element.
749 < fullLength) { * @typedef {Object} HTMLDOMElement
750 < fullLength) { */
751  
752 < fullLength) { /**
753 < fullLength) { * Utility function to create an HTML element with attributes and styles.
754 < fullLength) { *
755 < fullLength) { * @function #createElement
756 < fullLength) { * @memberOf Highcharts
757 < fullLength) { * @param {String} tag - The HTML tag.
758 < fullLength) { * @param {Object} [attribs] - Attributes as an object of key-value pairs.
759 < fullLength) { * @param {CSSObject} [styles] - Styles as an object of key-value pairs.
760 < fullLength) { * @param {Object} [parent] - The parent HTML object.
761 < fullLength) { * @param {Boolean} [nopad=false] - If true, remove all padding, border and
762 < fullLength) { * margin.
763 < fullLength) { * @returns {HTMLDOMElement} The created DOM element.
764 < fullLength) { */
765 < fullLength) { H.createElement = function(tag, attribs, styles, parent, nopad) {
766 < fullLength) { var el = doc.createElement(tag),
767 < fullLength) { css = H.css;
768 < fullLength) { if (attribs) {
769 < fullLength) { H.extend(el, attribs);
770 < fullLength) { }
771 < fullLength) { if (nopad) {
772 < fullLength) { css(el, {
773 < fullLength) { padding: 0,
774 < fullLength) { border: 'none',
775 < fullLength) { margin: 0
776 < fullLength) { });
777 < fullLength) { }
778 < fullLength) { if (styles) {
779 < fullLength) { css(el, styles);
780 < fullLength) { }
781 < fullLength) { if (parent) {
782 < fullLength) { parent.appendChild(el);
783 < fullLength) { }
784 < fullLength) { return el;
785 < fullLength) { };
786  
787 < fullLength) { /**
788 < fullLength) { * Extend a prototyped class by new members.
789 < fullLength) { *
790 < fullLength) { * @function #extendClass
791 < fullLength) { * @memberOf Highcharts
792 < fullLength) { * @param {Object} parent - The parent prototype to inherit.
793 < fullLength) { * @param {Object} members - A collection of prototype members to add or
794 < fullLength) { * override compared to the parent prototype.
795 < fullLength) { * @returns {Object} A new prototype.
796 < fullLength) { */
797 < fullLength) { H.extendClass = function(parent, members) {
798 < fullLength) { var object = function() {};
799 < fullLength) { object.prototype = new parent(); // eslint-disable-line new-cap
800 < fullLength) { H.extend(object.prototype, members);
801 < fullLength) { return object;
802 < fullLength) { };
803  
804 < fullLength) { /**
805 < fullLength) { * Left-pad a string to a given length by adding a character repetetively.
806 < fullLength) { *
807 < fullLength) { * @function #pad
808 < fullLength) { * @memberOf Highcharts
809 < fullLength) { * @param {Number} number - The input string or number.
810 < fullLength) { * @param {Number} length - The desired string length.
811 < fullLength) { * @param {String} [padder=0] - The character to pad with.
812 < fullLength) { * @returns {String} The padded string.
813 < fullLength) { */
814 < fullLength) { H.pad = function(number, length, padder) {
815 < fullLength) { return new Array((length || 2) + 1 -
816 < fullLength) { String(number).length).join(padder || 0) + number;
817 < fullLength) { };
818  
819 < fullLength) { /**
820 < fullLength) { * @typedef {Number|String} RelativeSize - If a number is given, it defines the
821 < fullLength) { * pixel length. If a percentage string is given, like for example `'50%'`,
822 < fullLength) { * the setting defines a length relative to a base size, for example the size
823 < fullLength) { * of a container.
824 < fullLength) { */
825 < fullLength) { /**
826 < fullLength) { * Return a length based on either the integer value, or a percentage of a base.
827 < fullLength) { *
828 < fullLength) { * @function #relativeLength
829 < fullLength) { * @memberOf Highcharts
830 < fullLength) { * @param {RelativeSize} value - A percentage string or a number.
831 < fullLength) { * @param {Number} base - The full length that represents 100%.
832 < fullLength) { * @returns {Number} The computed length.
833 < fullLength) { */
834 < fullLength) { H.relativeLength = function(value, base) {
835 < fullLength) { return (/%$/).test(value) ?
836 < fullLength) { base * parseFloat(value) / 100 :
837 < fullLength) { parseFloat(value);
838 < fullLength) { };
839  
840 < fullLength) { /**
841 < fullLength) { * Wrap a method with extended functionality, preserving the original function.
842 < fullLength) { *
843 < fullLength) { * @function #wrap
844 < fullLength) { * @memberOf Highcharts
845 < fullLength) { * @param {Object} obj - The context object that the method belongs to. In real
846 < fullLength) { * cases, this is often a prototype.
847 < fullLength) { * @param {String} method - The name of the method to extend.
848 < fullLength) { * @param {Function} func - A wrapper function callback. This function is called
849 < fullLength) { * with the same arguments as the original function, except that the
850 < fullLength) { * original function is unshifted and passed as the first argument.
851 < fullLength) { * @returns {void}
852 < fullLength) { */
853 < fullLength) { H.wrap = function(obj, method, func) {
854 < fullLength) { var proceed = obj[method];
855 < fullLength) { obj[method] = function() {
856 < fullLength) { var args = Array.prototype.slice.call(arguments),
857 < fullLength) { outerArgs = arguments,
858 < fullLength) { ctx = this,
859 < fullLength) { ret;
860 < fullLength) { ctx.proceed = function() {
861 < fullLength) { proceed.apply(ctx, arguments.length ? arguments : outerArgs);
862 < fullLength) { };
863 < fullLength) { args.unshift(proceed);
864 < fullLength) { ret = func.apply(this, args);
865 < fullLength) { ctx.proceed = null;
866 < fullLength) { return ret;
867 < fullLength) { };
868 < fullLength) { };
869  
870 < fullLength) { /**
871 < fullLength) { * Get the time zone offset based on the current timezone information as set in
872 < fullLength) { * the global options.
873 < fullLength) { *
874 < fullLength) { * @function #getTZOffset
875 < fullLength) { * @memberOf Highcharts
876 < fullLength) { * @param {Number} timestamp - The JavaScript timestamp to inspect.
877 < fullLength) { * @return {Number} - The timezone offset in minutes compared to UTC.
878 < fullLength) { */
879 < fullLength) { H.getTZOffset = function(timestamp) {
880 < fullLength) { var d = H.Date;
881 < fullLength) { return ((d.hcGetTimezoneOffset && d.hcGetTimezoneOffset(timestamp)) ||
882 < fullLength) { d.hcTimezoneOffset || 0) * 60000;
883 < fullLength) { };
884  
885 < fullLength) { /**
886 < fullLength) { * Format a date, based on the syntax for PHP's [strftime]{@link
887 < fullLength) { * http://www.php.net/manual/en/function.strftime.php} function.
888 < fullLength) { *
889 < fullLength) { * @function #dateFormat
890 < fullLength) { * @memberOf Highcharts
891 < fullLength) { * @param {String} format - The desired format where various time
892 < fullLength) { * representations are prefixed with %.
893 < fullLength) { * @param {Number} timestamp - The JavaScript timestamp.
894 < fullLength) { * @param {Boolean} [capitalize=false] - Upper case first letter in the return.
895 < fullLength) { * @returns {String} The formatted date.
896 < fullLength) { */
897 < fullLength) { H.dateFormat = function(format, timestamp, capitalize) {
898 < fullLength) { if (!H.defined(timestamp) || isNaN(timestamp)) {
899 < fullLength) { return H.defaultOptions.lang.invalidDate || '';
900 < fullLength) { }
901 < fullLength) { format = H.pick(format, '%Y-%m-%d %H:%M:%S');
902  
903 < fullLength) { var D = H.Date,
904 < fullLength) { date = new D(timestamp - H.getTZOffset(timestamp)),
905 < fullLength) { key, // used in for constuct below
906 < fullLength) { // get the basic time values
907 < fullLength) { hours = date[D.hcGetHours](),
908 < fullLength) { day = date[D.hcGetDay](),
909 < fullLength) { dayOfMonth = date[D.hcGetDate](),
910 < fullLength) { month = date[D.hcGetMonth](),
911 < fullLength) { fullYear = date[D.hcGetFullYear](),
912 < fullLength) { lang = H.defaultOptions.lang,
913 < fullLength) { langWeekdays = lang.weekdays,
914 < fullLength) { shortWeekdays = lang.shortWeekdays,
915 < fullLength) { pad = H.pad,
916  
917 < fullLength) { // List all format keys. Custom formats can be added from the outside.
918 < fullLength) { replacements = H.extend({
919  
920 < fullLength) { //-- Day
921 < fullLength) { // Short weekday, like 'Mon'
922 < fullLength) { 'a': shortWeekdays ?
923 < fullLength) { shortWeekdays[day] : langWeekdays[day].substr(0, 3),
924 < fullLength) { // Long weekday, like 'Monday'
925 < fullLength) { 'A': langWeekdays[day],
926 < fullLength) { // Two digit day of the month, 01 to 31
927 < fullLength) { 'd': pad(dayOfMonth),
928 < fullLength) { // Day of the month, 1 through 31
929 < fullLength) { 'e': pad(dayOfMonth, 2, ' '),
930 < fullLength) { 'w': day,
931  
932 < fullLength) { // Week (none implemented)
933 < fullLength) { //'W': weekNumber(),
934  
935 < fullLength) { //-- Month
936 < fullLength) { // Short month, like 'Jan'
937 < fullLength) { 'b': lang.shortMonths[month],
938 < fullLength) { // Long month, like 'January'
939 < fullLength) { 'B': lang.months[month],
940 < fullLength) { // Two digit month number, 01 through 12
941 < fullLength) { 'm': pad(month + 1),
942  
943 < fullLength) { //-- Year
944 < fullLength) { // Two digits year, like 09 for 2009
945 < fullLength) { 'y': fullYear.toString().substr(2, 2),
946 < fullLength) { // Four digits year, like 2009
947 < fullLength) { 'Y': fullYear,
948  
949 < fullLength) { //-- Time
950 < fullLength) { // Two digits hours in 24h format, 00 through 23
951 < fullLength) { 'H': pad(hours),
952 < fullLength) { // Hours in 24h format, 0 through 23
953 < fullLength) { 'k': hours,
954 < fullLength) { // Two digits hours in 12h format, 00 through 11
955 < fullLength) { 'I': pad((hours % 12) || 12),
956 < fullLength) { // Hours in 12h format, 1 through 12
957 < fullLength) { 'l': (hours % 12) || 12,
958 < fullLength) { // Two digits minutes, 00 through 59
959 < fullLength) { 'M': pad(date[D.hcGetMinutes]()),
960 < fullLength) { // Upper case AM or PM
961 < fullLength) { 'p': hours < 12 ? 'AM' : 'PM',
962 < fullLength) { // Lower case AM or PM
963 < fullLength) { 'P': hours < 12 ? 'am' : 'pm',
964 < fullLength) { // Two digits seconds, 00 through 59
965 < fullLength) { 'S': pad(date.getSeconds()),
966 < fullLength) { // Milliseconds (naming from Ruby)
967 < fullLength) { 'L': pad(Math.round(timestamp % 1000), 3)
968 < fullLength) { }, H.dateFormats);
969  
970  
971 < fullLength) { // Do the replaces
972 < fullLength) { for (key in replacements) {
973 < fullLength) { // Regex would do it in one line, but this is faster
974 < fullLength) { while (format.indexOf('%' + key) !== -1) {
975 < fullLength) { format = format.replace(
976 < fullLength) { '%' + key,
977 < fullLength) { typeof replacements[key] === 'function' ?
978 < fullLength) { replacements[key](timestamp) :
979 < fullLength) { replacements[key]
980 < fullLength) { );
981 < fullLength) { }
982 < fullLength) { }
983  
984 < fullLength) { // Optionally capitalize the string and return
985 < fullLength) { return capitalize ?
986 < fullLength) { format.substr(0, 1).toUpperCase() + format.substr(1) :
987 < fullLength) { format;
988 < fullLength) { };
989  
990 < fullLength) { /**
991 < fullLength) { * Format a single variable. Similar to sprintf, without the % prefix.
992 < fullLength) { *
993 < fullLength) { * @example
994 < fullLength) { * formatSingle('.2f', 5); // => '5.00'.
995 < fullLength) { *
996 < fullLength) { * @function #formatSingle
997 < fullLength) { * @memberOf Highcharts
998 < fullLength) { * @param {String} format The format string.
999 < fullLength) { * @param {*} val The value.
1000 < fullLength) { * @returns {String} The formatted representation of the value.
1001 < fullLength) { */
1002 < fullLength) { H.formatSingle = function(format, val) {
1003 < fullLength) { var floatRegex = /f$/,
1004 < fullLength) { decRegex = /\.([0-9])/,
1005 < fullLength) { lang = H.defaultOptions.lang,
1006 < fullLength) { decimals;
1007  
1008 < fullLength) { if (floatRegex.test(format)) { // float
1009 < fullLength) { decimals = format.match(decRegex);
1010 < fullLength) { decimals = decimals ? decimals[1] : -1;
1011 < fullLength) { if (val !== null) {
1012 < fullLength) { val = H.numberFormat(
1013 < fullLength) { val,
1014 < fullLength) { decimals,
1015 < fullLength) { lang.decimalPoint,
1016 < fullLength) { format.indexOf(',') > -1 ? lang.thousandsSep : ''
1017 < fullLength) { );
1018 < fullLength) { }
1019 < fullLength) { } else {
1020 < fullLength) { val = H.dateFormat(format, val);
1021 < fullLength) { }
1022 < fullLength) { return val;
1023 < fullLength) { };
1024  
1025 < fullLength) { /**
1026 < fullLength) { * Format a string according to a subset of the rules of Python's String.format
1027 < fullLength) { * method.
1028 < fullLength) { *
1029 < fullLength) { * @function #format
1030 < fullLength) { * @memberOf Highcharts
1031 < fullLength) { * @param {String} str The string to format.
1032 < fullLength) { * @param {Object} ctx The context, a collection of key-value pairs where each
1033 < fullLength) { * key is replaced by its value.
1034 < fullLength) { * @returns {String} The formatted string.
1035 < fullLength) { *
1036 < fullLength) { * @example
1037 < fullLength) { * var s = Highcharts.format(
1038 < fullLength) { * 'The {color} fox was {len:.2f} feet long',
1039 < fullLength) { * { color: 'red', len: Math.PI }
1040 < fullLength) { * );
1041 < fullLength) { * // => The red fox was 3.14 feet long
1042 < fullLength) { */
1043 < fullLength) { H.format = function(str, ctx) {
1044 < fullLength) { var splitter = '{',
1045 < fullLength) { isInside = false,
1046 < fullLength) { segment,
1047 < fullLength) { valueAndFormat,
1048 < fullLength) { path,
1049 < fullLength) { i,
1050 < fullLength) { len,
1051 < fullLength) { ret = [],
1052 < fullLength) { val,
1053 < fullLength) { index;
1054  
1055 < fullLength) { while (str) {
1056 < fullLength) { index = str.indexOf(splitter);
1057 < fullLength) { if (index === -1) {
1058 < fullLength) { break;
1059 < fullLength) { }
1060  
1061 < fullLength) { segment = str.slice(0, index);
1062 < fullLength) { if (isInside) { // we're on the closing bracket looking back
1063  
1064 < fullLength) { valueAndFormat = segment.split(':');
1065 < fullLength) { path = valueAndFormat.shift().split('.'); // get first and leave
1066 < fullLength) { len = path.length;
1067 < fullLength) { val = ctx;
1068  
1069 < fullLength) { // Assign deeper paths
1070 < fullLength) { for (i = 0; i < len; i++) {
1071 < fullLength) {< len; i++) { val = val[path[i]];
1072 < fullLength) {< len; i++) { }
1073  
1074 < fullLength) {< len; i++) { // Format the replacement
1075 < fullLength) {< len; i++) { if (valueAndFormat.length) {
1076 < fullLength) {< len; i++) { val = H.formatSingle(valueAndFormat.join(':'), val);
1077 < fullLength) {< len; i++) { }
1078  
1079 < fullLength) {< len; i++) { // Push the result and advance the cursor
1080 < fullLength) {< len; i++) { ret.push(val);
1081  
1082 < fullLength) {< len; i++) { } else {
1083 < fullLength) {< len; i++) { ret.push(segment);
1084  
1085 < fullLength) {< len; i++) { }
1086 < fullLength) {< len; i++) { str = str.slice(index + 1); // the rest
1087 < fullLength) {< len; i++) { isInside = !isInside; // toggle
1088 < fullLength) {< len; i++) { splitter = isInside ? '}' : '{'; // now look for next matching bracket
1089 < fullLength) {< len; i++) { }
1090 < fullLength) {< len; i++) { ret.push(str);
1091 < fullLength) {< len; i++) { return ret.join('');
1092 < fullLength) {< len; i++) { };
1093  
1094 < fullLength) {< len; i++) { /**
1095 < fullLength) {< len; i++) { * Get the magnitude of a number.
1096 < fullLength) {< len; i++) { *
1097 < fullLength) {< len; i++) { * @function #getMagnitude
1098 < fullLength) {< len; i++) { * @memberOf Highcharts
1099 < fullLength) {< len; i++) { * @param {Number} number The number.
1100 < fullLength) {< len; i++) { * @returns {Number} The magnitude, where 1-9 are magnitude 1, 10-99 magnitude 2
1101 < fullLength) {< len; i++) { * etc.
1102 < fullLength) {< len; i++) { */
1103 < fullLength) {< len; i++) { H.getMagnitude = function(num) {
1104 < fullLength) {< len; i++) { return Math.pow(10, Math.floor(Math.log(num) / Math.LN10));
1105 < fullLength) {< len; i++) { };
1106  
1107 < fullLength) {< len; i++) { /**
1108 < fullLength) {< len; i++) { * Take an interval and normalize it to multiples of round numbers.
1109 < fullLength) {< len; i++) { *
1110 < fullLength) {< len; i++) { * @todo Move this function to the Axis prototype. It is here only for
1111 < fullLength) {< len; i++) { * historical reasons.
1112 < fullLength) {< len; i++) { * @function #normalizeTickInterval
1113 < fullLength) {< len; i++) { * @memberOf Highcharts
1114 < fullLength) {< len; i++) { * @param {Number} interval - The raw, un-rounded interval.
1115 < fullLength) {< len; i++) { * @param {Array} [multiples] - Allowed multiples.
1116 < fullLength) {< len; i++) { * @param {Number} [magnitude] - The magnitude of the number.
1117 < fullLength) {< len; i++) { * @param {Boolean} [allowDecimals] - Whether to allow decimals.
1118 < fullLength) {< len; i++) { * @param {Boolean} [hasTickAmount] - If it has tickAmount, avoid landing
1119 < fullLength) {< len; i++) { * on tick intervals lower than original.
1120 < fullLength) {< len; i++) { * @returns {Number} The normalized interval.
1121 < fullLength) {< len; i++) { */
1122 < fullLength) {< len; i++) { H.normalizeTickInterval = function(interval, multiples, magnitude,
1123 < fullLength) {< len; i++) { allowDecimals, hasTickAmount) {
1124 < fullLength) {< len; i++) { var normalized,
1125 < fullLength) {< len; i++) { i,
1126 < fullLength) {< len; i++) { retInterval = interval;
1127  
1128 < fullLength) {< len; i++) { // round to a tenfold of 1, 2, 2.5 or 5
1129 < fullLength) {< len; i++) { magnitude = H.pick(magnitude, 1);
1130 < fullLength) {< len; i++) { normalized = interval / magnitude;
1131  
1132 < fullLength) {< len; i++) { // multiples for a linear scale
1133 < fullLength) {< len; i++) { if (!multiples) {
1134 < fullLength) {< len; i++) { multiples = hasTickAmount ?
1135 < fullLength) {< len; i++) { // Finer grained ticks when the tick amount is hard set, including
1136 < fullLength) {< len; i++) { // when alignTicks is true on multiple axes (#4580).
1137 < fullLength) {< len; i++) { [1, 1.2, 1.5, 2, 2.5, 3, 4, 5, 6, 8, 10] :
1138  
1139 < fullLength) {< len; i++) { // Else, let ticks fall on rounder numbers
1140 < fullLength) {< len; i++) { [1, 2, 2.5, 5, 10];
1141  
1142  
1143 < fullLength) {< len; i++) { // the allowDecimals option
1144 < fullLength) {< len; i++) { if (allowDecimals === false) {
1145 < fullLength) {< len; i++) { if (magnitude === 1) {
1146 < fullLength) {< len; i++) { multiples = H.grep(multiples, function(num) {
1147 < fullLength) {< len; i++) { return num % 1 === 0;
1148 < fullLength) {< len; i++) { });
1149 < fullLength) {< len; i++) { } else if (magnitude <= 0.1) {
1150 < fullLength) {< len; i++) {<= 0.1) { multiples = [1 / magnitude];
1151 < fullLength) {< len; i++) {<= 0.1) { }
1152 < fullLength) {< len; i++) {<= 0.1) { }
1153 < fullLength) {< len; i++) {<= 0.1) { }
1154  
1155 < fullLength) {< len; i++) {<= 0.1) { // normalize the interval to the nearest multiple
1156 < fullLength) {< len; i++) {<= 0.1) { for (i = 0; i < multiples.length; i++) {
1157 < fullLength) {< len; i++) {<= 0.1) { retInterval = multiples[i];
1158 < fullLength) {< len; i++) {<= 0.1) { // only allow tick amounts smaller than natural
1159 < fullLength) {< len; i++) {<= 0.1) { if ((hasTickAmount && retInterval * magnitude >= interval) ||
1160 < fullLength) {< len; i++) {<= 0.1) { (!hasTickAmount && (normalized <= (multiples[i] +
1161 < fullLength) {< len; i++) {<= 0.1) { (multiples[i + 1] || multiples[i])) / 2))) {
1162 < fullLength) {< len; i++) {<= 0.1) { break;
1163 < fullLength) {< len; i++) {<= 0.1) { }
1164 < fullLength) {< len; i++) {<= 0.1) { }
1165  
1166 < fullLength) {< len; i++) {<= 0.1) { // Multiply back to the correct magnitude. Correct floats to appropriate
1167 < fullLength) {< len; i++) {<= 0.1) { // precision (#6085).
1168 < fullLength) {< len; i++) {<= 0.1) { retInterval = H.correctFloat(
1169 < fullLength) {< len; i++) {<= 0.1) { retInterval * magnitude, -Math.round(Math.log(0.001) / Math.LN10)
1170 < fullLength) {< len; i++) {<= 0.1) { );
1171  
1172 < fullLength) {< len; i++) {<= 0.1) { return retInterval;
1173 < fullLength) {< len; i++) {<= 0.1) { };
1174  
1175  
1176 < fullLength) {< len; i++) {<= 0.1) { /**
1177 < fullLength) {< len; i++) {<= 0.1) { * Sort an object array and keep the order of equal items. The ECMAScript
1178 < fullLength) {< len; i++) {<= 0.1) { * standard does not specify the behaviour when items are equal.
1179 < fullLength) {< len; i++) {<= 0.1) { *
1180 < fullLength) {< len; i++) {<= 0.1) { * @function #stableSort
1181 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1182 < fullLength) {< len; i++) {<= 0.1) { * @param {Array} arr - The array to sort.
1183 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} sortFunction - The function to sort it with, like with
1184 < fullLength) {< len; i++) {<= 0.1) { * regular Array.prototype.sort.
1185 < fullLength) {< len; i++) {<= 0.1) { * @returns {void}
1186 < fullLength) {< len; i++) {<= 0.1) { */
1187 < fullLength) {< len; i++) {<= 0.1) { H.stableSort = function(arr, sortFunction) {
1188 < fullLength) {< len; i++) {<= 0.1) { var length = arr.length,
1189 < fullLength) {< len; i++) {<= 0.1) { sortValue,
1190 < fullLength) {< len; i++) {<= 0.1) { i;
1191  
1192 < fullLength) {< len; i++) {<= 0.1) { // Add index to each item
1193 < fullLength) {< len; i++) {<= 0.1) { for (i = 0; i < length; i++) {
1194 < fullLength) {< len; i++) {<= 0.1) { arr[i].safeI = i; // stable sort index
1195 < fullLength) {< len; i++) {<= 0.1) { }
1196  
1197 < fullLength) {< len; i++) {<= 0.1) { arr.sort(function(a, b) {
1198 < fullLength) {< len; i++) {<= 0.1) { sortValue = sortFunction(a, b);
1199 < fullLength) {< len; i++) {<= 0.1) { return sortValue === 0 ? a.safeI - b.safeI : sortValue;
1200 < fullLength) {< len; i++) {<= 0.1) { });
1201  
1202 < fullLength) {< len; i++) {<= 0.1) { // Remove index from items
1203 < fullLength) {< len; i++) {<= 0.1) { for (i = 0; i < length; i++) {
1204 < fullLength) {< len; i++) {<= 0.1) { delete arr[i].safeI; // stable sort index
1205 < fullLength) {< len; i++) {<= 0.1) { }
1206 < fullLength) {< len; i++) {<= 0.1) { };
1207  
1208 < fullLength) {< len; i++) {<= 0.1) { /**
1209 < fullLength) {< len; i++) {<= 0.1) { * Non-recursive method to find the lowest member of an array. `Math.min` raises
1210 < fullLength) {< len; i++) {<= 0.1) { * a maximum call stack size exceeded error in Chrome when trying to apply more
1211 < fullLength) {< len; i++) {<= 0.1) { * than 150.000 points. This method is slightly slower, but safe.
1212 < fullLength) {< len; i++) {<= 0.1) { *
1213 < fullLength) {< len; i++) {<= 0.1) { * @function #arrayMin
1214 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1215 < fullLength) {< len; i++) {<= 0.1) { * @param {Array} data An array of numbers.
1216 < fullLength) {< len; i++) {<= 0.1) { * @returns {Number} The lowest number.
1217 < fullLength) {< len; i++) {<= 0.1) { */
1218 < fullLength) {< len; i++) {<= 0.1) { H.arrayMin = function(data) {
1219 < fullLength) {< len; i++) {<= 0.1) { var i = data.length,
1220 < fullLength) {< len; i++) {<= 0.1) { min = data[0];
1221  
1222 < fullLength) {< len; i++) {<= 0.1) { while (i--) {
1223 < fullLength) {< len; i++) {<= 0.1) { if (data[i] < min) {
1224 < fullLength) {< len; i++) {<= 0.1) { min = data[i];
1225 < fullLength) {< len; i++) {<= 0.1) { }
1226 < fullLength) {< len; i++) {<= 0.1) { }
1227 < fullLength) {< len; i++) {<= 0.1) { return min;
1228 < fullLength) {< len; i++) {<= 0.1) { };
1229  
1230 < fullLength) {< len; i++) {<= 0.1) { /**
1231 < fullLength) {< len; i++) {<= 0.1) { * Non-recursive method to find the lowest member of an array. `Math.max` raises
1232 < fullLength) {< len; i++) {<= 0.1) { * a maximum call stack size exceeded error in Chrome when trying to apply more
1233 < fullLength) {< len; i++) {<= 0.1) { * than 150.000 points. This method is slightly slower, but safe.
1234 < fullLength) {< len; i++) {<= 0.1) { *
1235 < fullLength) {< len; i++) {<= 0.1) { * @function #arrayMax
1236 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1237 < fullLength) {< len; i++) {<= 0.1) { * @param {Array} data - An array of numbers.
1238 < fullLength) {< len; i++) {<= 0.1) { * @returns {Number} The highest number.
1239 < fullLength) {< len; i++) {<= 0.1) { */
1240 < fullLength) {< len; i++) {<= 0.1) { H.arrayMax = function(data) {
1241 < fullLength) {< len; i++) {<= 0.1) { var i = data.length,
1242 < fullLength) {< len; i++) {<= 0.1) { max = data[0];
1243  
1244 < fullLength) {< len; i++) {<= 0.1) { while (i--) {
1245 < fullLength) {< len; i++) {<= 0.1) { if (data[i] > max) {
1246 < fullLength) {< len; i++) {<= 0.1) { max = data[i];
1247 < fullLength) {< len; i++) {<= 0.1) { }
1248 < fullLength) {< len; i++) {<= 0.1) { }
1249 < fullLength) {< len; i++) {<= 0.1) { return max;
1250 < fullLength) {< len; i++) {<= 0.1) { };
1251  
1252 < fullLength) {< len; i++) {<= 0.1) { /**
1253 < fullLength) {< len; i++) {<= 0.1) { * Utility method that destroys any SVGElement instances that are properties on
1254 < fullLength) {< len; i++) {<= 0.1) { * the given object. It loops all properties and invokes destroy if there is a
1255 < fullLength) {< len; i++) {<= 0.1) { * destroy method. The property is then delete.
1256 < fullLength) {< len; i++) {<= 0.1) { *
1257 < fullLength) {< len; i++) {<= 0.1) { * @function #destroyObjectProperties
1258 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1259 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} obj - The object to destroy properties on.
1260 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} [except] - Exception, do not destroy this property, only
1261 < fullLength) {< len; i++) {<= 0.1) { * delete it.
1262 < fullLength) {< len; i++) {<= 0.1) { * @returns {void}
1263 < fullLength) {< len; i++) {<= 0.1) { */
1264 < fullLength) {< len; i++) {<= 0.1) { H.destroyObjectProperties = function(obj, except) {
1265 < fullLength) {< len; i++) {<= 0.1) { var n;
1266 < fullLength) {< len; i++) {<= 0.1) { for (n in obj) {
1267 < fullLength) {< len; i++) {<= 0.1) { // If the object is non-null and destroy is defined
1268 < fullLength) {< len; i++) {<= 0.1) { if (obj[n] && obj[n] !== except && obj[n].destroy) {
1269 < fullLength) {< len; i++) {<= 0.1) { // Invoke the destroy
1270 < fullLength) {< len; i++) {<= 0.1) { obj[n].destroy();
1271 < fullLength) {< len; i++) {<= 0.1) { }
1272  
1273 < fullLength) {< len; i++) {<= 0.1) { // Delete the property from the object.
1274 < fullLength) {< len; i++) {<= 0.1) { delete obj[n];
1275 < fullLength) {< len; i++) {<= 0.1) { }
1276 < fullLength) {< len; i++) {<= 0.1) { };
1277  
1278  
1279 < fullLength) {< len; i++) {<= 0.1) { /**
1280 < fullLength) {< len; i++) {<= 0.1) { * Discard a HTML element by moving it to the bin and delete.
1281 < fullLength) {< len; i++) {<= 0.1) { *
1282 < fullLength) {< len; i++) {<= 0.1) { * @function #discardElement
1283 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1284 < fullLength) {< len; i++) {<= 0.1) { * @param {HTMLDOMElement} element - The HTML node to discard.
1285 < fullLength) {< len; i++) {<= 0.1) { * @returns {void}
1286 < fullLength) {< len; i++) {<= 0.1) { */
1287 < fullLength) {< len; i++) {<= 0.1) { H.discardElement = function(element) {
1288 < fullLength) {< len; i++) {<= 0.1) { var garbageBin = H.garbageBin;
1289 < fullLength) {< len; i++) {<= 0.1) { // create a garbage bin element, not part of the DOM
1290 < fullLength) {< len; i++) {<= 0.1) { if (!garbageBin) {
1291 < fullLength) {< len; i++) {<= 0.1) { garbageBin = H.createElement('div');
1292 < fullLength) {< len; i++) {<= 0.1) { }
1293  
1294 < fullLength) {< len; i++) {<= 0.1) { // move the node and empty bin
1295 < fullLength) {< len; i++) {<= 0.1) { if (element) {
1296 < fullLength) {< len; i++) {<= 0.1) { garbageBin.appendChild(element);
1297 < fullLength) {< len; i++) {<= 0.1) { }
1298 < fullLength) {< len; i++) {<= 0.1) { garbageBin.innerHTML = '';
1299 < fullLength) {< len; i++) {<= 0.1) { };
1300  
1301 < fullLength) {< len; i++) {<= 0.1) { /**
1302 < fullLength) {< len; i++) {<= 0.1) { * Fix JS round off float errors.
1303 < fullLength) {< len; i++) {<= 0.1) { *
1304 < fullLength) {< len; i++) {<= 0.1) { * @function #correctFloat
1305 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1306 < fullLength) {< len; i++) {<= 0.1) { * @param {Number} num - A float number to fix.
1307 < fullLength) {< len; i++) {<= 0.1) { * @param {Number} [prec=14] - The precision.
1308 < fullLength) {< len; i++) {<= 0.1) { * @returns {Number} The corrected float number.
1309 < fullLength) {< len; i++) {<= 0.1) { */
1310 < fullLength) {< len; i++) {<= 0.1) { H.correctFloat = function(num, prec) {
1311 < fullLength) {< len; i++) {<= 0.1) { return parseFloat(
1312 < fullLength) {< len; i++) {<= 0.1) { num.toPrecision(prec || 14)
1313 < fullLength) {< len; i++) {<= 0.1) { );
1314 < fullLength) {< len; i++) {<= 0.1) { };
1315  
1316 < fullLength) {< len; i++) {<= 0.1) { /**
1317 < fullLength) {< len; i++) {<= 0.1) { * Set the global animation to either a given value, or fall back to the given
1318 < fullLength) {< len; i++) {<= 0.1) { * chart's animation option.
1319 < fullLength) {< len; i++) {<= 0.1) { *
1320 < fullLength) {< len; i++) {<= 0.1) { * @function #setAnimation
1321 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1322 < fullLength) {< len; i++) {<= 0.1) { * @param {Boolean|Animation} animation - The animation object.
1323 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} chart - The chart instance.
1324 < fullLength) {< len; i++) {<= 0.1) { * @returns {void}
1325 < fullLength) {< len; i++) {<= 0.1) { * @todo This function always relates to a chart, and sets a property on the
1326 < fullLength) {< len; i++) {<= 0.1) { * renderer, so it should be moved to the SVGRenderer.
1327 < fullLength) {< len; i++) {<= 0.1) { */
1328 < fullLength) {< len; i++) {<= 0.1) { H.setAnimation = function(animation, chart) {
1329 < fullLength) {< len; i++) {<= 0.1) { chart.renderer.globalAnimation = H.pick(
1330 < fullLength) {< len; i++) {<= 0.1) { animation,
1331 < fullLength) {< len; i++) {<= 0.1) { chart.options.chart.animation,
1332 < fullLength) {< len; i++) {<= 0.1) { true
1333 < fullLength) {< len; i++) {<= 0.1) { );
1334 < fullLength) {< len; i++) {<= 0.1) { };
1335  
1336 < fullLength) {< len; i++) {<= 0.1) { /**
1337 < fullLength) {< len; i++) {<= 0.1) { * Get the animation in object form, where a disabled animation is always
1338 < fullLength) {< len; i++) {<= 0.1) { * returned as `{ duration: 0 }`.
1339 < fullLength) {< len; i++) {<= 0.1) { *
1340 < fullLength) {< len; i++) {<= 0.1) { * @function #animObject
1341 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1342 < fullLength) {< len; i++) {<= 0.1) { * @param {Boolean|AnimationOptions} animation - An animation setting. Can be an
1343 < fullLength) {< len; i++) {<= 0.1) { * object with duration, complete and easing properties, or a boolean to
1344 < fullLength) {< len; i++) {<= 0.1) { * enable or disable.
1345 < fullLength) {< len; i++) {<= 0.1) { * @returns {AnimationOptions} An object with at least a duration property.
1346 < fullLength) {< len; i++) {<= 0.1) { */
1347 < fullLength) {< len; i++) {<= 0.1) { H.animObject = function(animation) {
1348 < fullLength) {< len; i++) {<= 0.1) { return H.isObject(animation) ?
1349 < fullLength) {< len; i++) {<= 0.1) { H.merge(animation) : {
1350 < fullLength) {< len; i++) {<= 0.1) { duration: animation ? 500 : 0
1351 < fullLength) {< len; i++) {<= 0.1) { };
1352 < fullLength) {< len; i++) {<= 0.1) { };
1353  
1354 < fullLength) {< len; i++) {<= 0.1) { /**
1355 < fullLength) {< len; i++) {<= 0.1) { * The time unit lookup
1356 < fullLength) {< len; i++) {<= 0.1) { */
1357 < fullLength) {< len; i++) {<= 0.1) { H.timeUnits = {
1358 < fullLength) {< len; i++) {<= 0.1) { millisecond: 1,
1359 < fullLength) {< len; i++) {<= 0.1) { second: 1000,
1360 < fullLength) {< len; i++) {<= 0.1) { minute: 60000,
1361 < fullLength) {< len; i++) {<= 0.1) { hour: 3600000,
1362 < fullLength) {< len; i++) {<= 0.1) { day: 24 * 3600000,
1363 < fullLength) {< len; i++) {<= 0.1) { week: 7 * 24 * 3600000,
1364 < fullLength) {< len; i++) {<= 0.1) { month: 28 * 24 * 3600000,
1365 < fullLength) {< len; i++) {<= 0.1) { year: 364 * 24 * 3600000
1366 < fullLength) {< len; i++) {<= 0.1) { };
1367  
1368 < fullLength) {< len; i++) {<= 0.1) { /**
1369 < fullLength) {< len; i++) {<= 0.1) { * Format a number and return a string based on input settings.
1370 < fullLength) {< len; i++) {<= 0.1) { *
1371 < fullLength) {< len; i++) {<= 0.1) { * @function #numberFormat
1372 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1373 < fullLength) {< len; i++) {<= 0.1) { * @param {Number} number - The input number to format.
1374 < fullLength) {< len; i++) {<= 0.1) { * @param {Number} decimals - The amount of decimals. A value of -1 preserves
1375 < fullLength) {< len; i++) {<= 0.1) { * the amount in the input number.
1376 < fullLength) {< len; i++) {<= 0.1) { * @param {String} [decimalPoint] - The decimal point, defaults to the one given
1377 < fullLength) {< len; i++) {<= 0.1) { * in the lang options.
1378 < fullLength) {< len; i++) {<= 0.1) { * @param {String} [thousandsSep] - The thousands separator, defaults to the one
1379 < fullLength) {< len; i++) {<= 0.1) { * given in the lang options.
1380 < fullLength) {< len; i++) {<= 0.1) { * @returns {String} The formatted number.
1381 < fullLength) {< len; i++) {<= 0.1) { */
1382 < fullLength) {< len; i++) {<= 0.1) { H.numberFormat = function(number, decimals, decimalPoint, thousandsSep) {
1383 < fullLength) {< len; i++) {<= 0.1) { number = +number || 0;
1384 < fullLength) {< len; i++) {<= 0.1) { decimals = +decimals;
1385  
1386 < fullLength) {< len; i++) {<= 0.1) { var lang = H.defaultOptions.lang,
1387 < fullLength) {< len; i++) {<= 0.1) { origDec = (number.toString().split('.')[1] || '').length,
1388 < fullLength) {< len; i++) {<= 0.1) { strinteger,
1389 < fullLength) {< len; i++) {<= 0.1) { thousands,
1390 < fullLength) {< len; i++) {<= 0.1) { ret,
1391 < fullLength) {< len; i++) {<= 0.1) { roundedNumber;
1392  
1393 < fullLength) {< len; i++) {<= 0.1) { if (decimals === -1) {
1394 < fullLength) {< len; i++) {<= 0.1) { // Preserve decimals. Not huge numbers (#3793).
1395 < fullLength) {< len; i++) {<= 0.1) { decimals = Math.min(origDec, 20);
1396 < fullLength) {< len; i++) {<= 0.1) { } else if (!H.isNumber(decimals)) {
1397 < fullLength) {< len; i++) {<= 0.1) { decimals = 2;
1398 < fullLength) {< len; i++) {<= 0.1) { }
1399  
1400 < fullLength) {< len; i++) {<= 0.1) { // Add another decimal to avoid rounding errors of float numbers. (#4573)
1401 < fullLength) {< len; i++) {<= 0.1) { // Then use toFixed to handle rounding.
1402 < fullLength) {< len; i++) {<= 0.1) { roundedNumber = (
1403 < fullLength) {< len; i++) {<= 0.1) { Math.abs(number) + Math.pow(10, -Math.max(decimals, origDec) - 1)
1404 < fullLength) {< len; i++) {<= 0.1) { ).toFixed(decimals);
1405  
1406 < fullLength) {< len; i++) {<= 0.1) { // A string containing the positive integer component of the number
1407 < fullLength) {< len; i++) {<= 0.1) { strinteger = String(H.pInt(roundedNumber));
1408  
1409 < fullLength) {< len; i++) {<= 0.1) { // Leftover after grouping into thousands. Can be 0, 1 or 3.
1410 < fullLength) {< len; i++) {<= 0.1) { thousands = strinteger.length > 3 ? strinteger.length % 3 : 0;
1411  
1412 < fullLength) {< len; i++) {<= 0.1) { // Language
1413 < fullLength) {< len; i++) {<= 0.1) { decimalPoint = H.pick(decimalPoint, lang.decimalPoint);
1414 < fullLength) {< len; i++) {<= 0.1) { thousandsSep = H.pick(thousandsSep, lang.thousandsSep);
1415  
1416 < fullLength) {< len; i++) {<= 0.1) { // Start building the return
1417 < fullLength) {< len; i++) {<= 0.1) { ret = number < 0 ? '-' : '';
1418  
1419 < fullLength) {< len; i++) {<= 0.1) { // Add the leftover after grouping into thousands. For example, in the
1420 < fullLength) {< len; i++) {<= 0.1) { // number 42 000 000, this line adds 42.
1421 < fullLength) {< len; i++) {<= 0.1) { ret += thousands ? strinteger.substr(0, thousands) + thousandsSep : '';
1422  
1423 < fullLength) {< len; i++) {<= 0.1) { // Add the remaining thousands groups, joined by the thousands separator
1424 < fullLength) {< len; i++) {<= 0.1) { ret += strinteger
1425 < fullLength) {< len; i++) {<= 0.1) { .substr(thousands)
1426 < fullLength) {< len; i++) {<= 0.1) { .replace(/(\d{3})(?=\d)/g, '$1' + thousandsSep);
1427  
1428 < fullLength) {< len; i++) {<= 0.1) { // Add the decimal point and the decimal component
1429 < fullLength) {< len; i++) {<= 0.1) { if (decimals) {
1430 < fullLength) {< len; i++) {<= 0.1) { // Get the decimal component
1431 < fullLength) {< len; i++) {<= 0.1) { ret += decimalPoint + roundedNumber.slice(-decimals);
1432 < fullLength) {< len; i++) {<= 0.1) { }
1433  
1434 < fullLength) {< len; i++) {<= 0.1) { return ret;
1435 < fullLength) {< len; i++) {<= 0.1) { };
1436  
1437 < fullLength) {< len; i++) {<= 0.1) { /**
1438 < fullLength) {< len; i++) {<= 0.1) { * Easing definition
1439 < fullLength) {< len; i++) {<= 0.1) { * @ignore
1440 < fullLength) {< len; i++) {<= 0.1) { * @param {Number} pos Current position, ranging from 0 to 1.
1441 < fullLength) {< len; i++) {<= 0.1) { */
1442 < fullLength) {< len; i++) {<= 0.1) { Math.easeInOutSine = function(pos) {
1443 < fullLength) {< len; i++) {<= 0.1) { return -0.5 * (Math.cos(Math.PI * pos) - 1);
1444 < fullLength) {< len; i++) {<= 0.1) { };
1445  
1446 < fullLength) {< len; i++) {<= 0.1) { /**
1447 < fullLength) {< len; i++) {<= 0.1) { * Get the computed CSS value for given element and property, only for numerical
1448 < fullLength) {< len; i++) {<= 0.1) { * properties. For width and height, the dimension of the inner box (excluding
1449 < fullLength) {< len; i++) {<= 0.1) { * padding) is returned. Used for fitting the chart within the container.
1450 < fullLength) {< len; i++) {<= 0.1) { *
1451 < fullLength) {< len; i++) {<= 0.1) { * @function #getStyle
1452 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1453 < fullLength) {< len; i++) {<= 0.1) { * @param {HTMLDOMElement} el - A HTML element.
1454 < fullLength) {< len; i++) {<= 0.1) { * @param {String} prop - The property name.
1455 < fullLength) {< len; i++) {<= 0.1) { * @returns {Number} - The numeric value.
1456 < fullLength) {< len; i++) {<= 0.1) { */
1457 < fullLength) {< len; i++) {<= 0.1) { H.getStyle = function(el, prop) {
1458  
1459 < fullLength) {< len; i++) {<= 0.1) { var style;
1460  
1461 < fullLength) {< len; i++) {<= 0.1) { // For width and height, return the actual inner pixel size (#4913)
1462 < fullLength) {< len; i++) {<= 0.1) { if (prop === 'width') {
1463 < fullLength) {< len; i++) {<= 0.1) { return Math.min(el.offsetWidth, el.scrollWidth) -
1464 < fullLength) {< len; i++) {<= 0.1) { H.getStyle(el, 'padding-left') -
1465 < fullLength) {< len; i++) {<= 0.1) { H.getStyle(el, 'padding-right');
1466 < fullLength) {< len; i++) {<= 0.1) { } else if (prop === 'height') {
1467 < fullLength) {< len; i++) {<= 0.1) { return Math.min(el.offsetHeight, el.scrollHeight) -
1468 < fullLength) {< len; i++) {<= 0.1) { H.getStyle(el, 'padding-top') -
1469 < fullLength) {< len; i++) {<= 0.1) { H.getStyle(el, 'padding-bottom');
1470 < fullLength) {< len; i++) {<= 0.1) { }
1471  
1472 < fullLength) {< len; i++) {<= 0.1) { // Otherwise, get the computed style
1473 < fullLength) {< len; i++) {<= 0.1) { style = win.getComputedStyle(el, undefined);
1474 < fullLength) {< len; i++) {<= 0.1) { return style && H.pInt(style.getPropertyValue(prop));
1475 < fullLength) {< len; i++) {<= 0.1) { };
1476  
1477 < fullLength) {< len; i++) {<= 0.1) { /**
1478 < fullLength) {< len; i++) {<= 0.1) { * Search for an item in an array.
1479 < fullLength) {< len; i++) {<= 0.1) { *
1480 < fullLength) {< len; i++) {<= 0.1) { * @function #inArray
1481 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1482 < fullLength) {< len; i++) {<= 0.1) { * @param {*} item - The item to search for.
1483 < fullLength) {< len; i++) {<= 0.1) { * @param {arr} arr - The array or node collection to search in.
1484 < fullLength) {< len; i++) {<= 0.1) { * @returns {Number} - The index within the array, or -1 if not found.
1485 < fullLength) {< len; i++) {<= 0.1) { */
1486 < fullLength) {< len; i++) {<= 0.1) { H.inArray = function(item, arr) {
1487 < fullLength) {< len; i++) {<= 0.1) { return arr.indexOf ? arr.indexOf(item) : [].indexOf.call(arr, item);
1488 < fullLength) {< len; i++) {<= 0.1) { };
1489  
1490 < fullLength) {< len; i++) {<= 0.1) { /**
1491 < fullLength) {< len; i++) {<= 0.1) { * Filter an array by a callback.
1492 < fullLength) {< len; i++) {<= 0.1) { *
1493 < fullLength) {< len; i++) {<= 0.1) { * @function #grep
1494 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1495 < fullLength) {< len; i++) {<= 0.1) { * @param {Array} arr - The array to filter.
1496 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} callback - The callback function. The function receives the
1497 < fullLength) {< len; i++) {<= 0.1) { * item as the first argument. Return `true` if the item is to be
1498 < fullLength) {< len; i++) {<= 0.1) { * preserved.
1499 < fullLength) {< len; i++) {<= 0.1) { * @returns {Array} - A new, filtered array.
1500 < fullLength) {< len; i++) {<= 0.1) { */
1501 < fullLength) {< len; i++) {<= 0.1) { H.grep = function(arr, callback) {
1502 < fullLength) {< len; i++) {<= 0.1) { return [].filter.call(arr, callback);
1503 < fullLength) {< len; i++) {<= 0.1) { };
1504  
1505 < fullLength) {< len; i++) {<= 0.1) { /**
1506 < fullLength) {< len; i++) {<= 0.1) { * Return the value of the first element in the array that satisfies the
1507 < fullLength) {< len; i++) {<= 0.1) { * provided testing function.
1508 < fullLength) {< len; i++) {<= 0.1) { *
1509 < fullLength) {< len; i++) {<= 0.1) { * @function #find
1510 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1511 < fullLength) {< len; i++) {<= 0.1) { * @param {Array} arr - The array to test.
1512 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} callback - The callback function. The function receives the
1513 < fullLength) {< len; i++) {<= 0.1) { * item as the first argument. Return `true` if this item satisfies the
1514 < fullLength) {< len; i++) {<= 0.1) { * condition.
1515 < fullLength) {< len; i++) {<= 0.1) { * @returns {Mixed} - The value of the element.
1516 < fullLength) {< len; i++) {<= 0.1) { */
1517 < fullLength) {< len; i++) {<= 0.1) { H.find = function(arr, callback) {
1518 < fullLength) {< len; i++) {<= 0.1) { return [].find.call(arr, callback);
1519 < fullLength) {< len; i++) {<= 0.1) { };
1520  
1521 < fullLength) {< len; i++) {<= 0.1) { /**
1522 < fullLength) {< len; i++) {<= 0.1) { * Map an array by a callback.
1523 < fullLength) {< len; i++) {<= 0.1) { *
1524 < fullLength) {< len; i++) {<= 0.1) { * @function #map
1525 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1526 < fullLength) {< len; i++) {<= 0.1) { * @param {Array} arr - The array to map.
1527 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} fn - The callback function. Return the new value for the
1528 < fullLength) {< len; i++) {<= 0.1) { * new array.
1529 < fullLength) {< len; i++) {<= 0.1) { * @returns {Array} - A new array item with modified items.
1530 < fullLength) {< len; i++) {<= 0.1) { */
1531 < fullLength) {< len; i++) {<= 0.1) { H.map = function(arr, fn) {
1532 < fullLength) {< len; i++) {<= 0.1) { var results = [],
1533 < fullLength) {< len; i++) {<= 0.1) { i = 0,
1534 < fullLength) {< len; i++) {<= 0.1) { len = arr.length;
1535  
1536 < fullLength) {< len; i++) {<= 0.1) { for (; i < len; i++) {
1537 < fullLength) {< len; i++) {<= 0.1) { results[i] = fn.call(arr[i], arr[i], i, arr);
1538 < fullLength) {< len; i++) {<= 0.1) { }
1539  
1540 < fullLength) {< len; i++) {<= 0.1) { return results;
1541 < fullLength) {< len; i++) {<= 0.1) { };
1542  
1543 < fullLength) {< len; i++) {<= 0.1) { /**
1544 < fullLength) {< len; i++) {<= 0.1) { * Get the element's offset position, corrected for `overflow: auto`.
1545 < fullLength) {< len; i++) {<= 0.1) { *
1546 < fullLength) {< len; i++) {<= 0.1) { * @function #offset
1547 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1548 < fullLength) {< len; i++) {<= 0.1) { * @param {HTMLDOMElement} el - The HTML element.
1549 < fullLength) {< len; i++) {<= 0.1) { * @returns {Object} An object containing `left` and `top` properties for the
1550 < fullLength) {< len; i++) {<= 0.1) { * position in the page.
1551 < fullLength) {< len; i++) {<= 0.1) { */
1552 < fullLength) {< len; i++) {<= 0.1) { H.offset = function(el) {
1553 < fullLength) {< len; i++) {<= 0.1) { var docElem = doc.documentElement,
1554 < fullLength) {< len; i++) {<= 0.1) { box = el.getBoundingClientRect();
1555  
1556 < fullLength) {< len; i++) {<= 0.1) { return {
1557 < fullLength) {< len; i++) {<= 0.1) { top: box.top + (win.pageYOffset || docElem.scrollTop) -
1558 < fullLength) {< len; i++) {<= 0.1) { (docElem.clientTop || 0),
1559 < fullLength) {< len; i++) {<= 0.1) { left: box.left + (win.pageXOffset || docElem.scrollLeft) -
1560 < fullLength) {< len; i++) {<= 0.1) { (docElem.clientLeft || 0)
1561 < fullLength) {< len; i++) {<= 0.1) { };
1562 < fullLength) {< len; i++) {<= 0.1) { };
1563  
1564 < fullLength) {< len; i++) {<= 0.1) { /**
1565 < fullLength) {< len; i++) {<= 0.1) { * Stop running animation.
1566 < fullLength) {< len; i++) {<= 0.1) { *
1567 < fullLength) {< len; i++) {<= 0.1) { * @todo A possible extension to this would be to stop a single property, when
1568 < fullLength) {< len; i++) {<= 0.1) { * we want to continue animating others. Then assign the prop to the timer
1569 < fullLength) {< len; i++) {<= 0.1) { * in the Fx.run method, and check for the prop here. This would be an
1570 < fullLength) {< len; i++) {<= 0.1) { * improvement in all cases where we stop the animation from .attr. Instead of
1571 < fullLength) {< len; i++) {<= 0.1) { * stopping everything, we can just stop the actual attributes we're setting.
1572 < fullLength) {< len; i++) {<= 0.1) { *
1573 < fullLength) {< len; i++) {<= 0.1) { * @function #stop
1574 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1575 < fullLength) {< len; i++) {<= 0.1) { * @param {SVGElement} el - The SVGElement to stop animation on.
1576 < fullLength) {< len; i++) {<= 0.1) { * @param {string} [prop] - The property to stop animating. If given, the stop
1577 < fullLength) {< len; i++) {<= 0.1) { * method will stop a single property from animating, while others continue.
1578 < fullLength) {< len; i++) {<= 0.1) { * @returns {void}
1579 < fullLength) {< len; i++) {<= 0.1) { */
1580 < fullLength) {< len; i++) {<= 0.1) { H.stop = function(el, prop) {
1581  
1582 < fullLength) {< len; i++) {<= 0.1) { var i = timers.length;
1583  
1584 < fullLength) {< len; i++) {<= 0.1) { // Remove timers related to this element (#4519)
1585 < fullLength) {< len; i++) {<= 0.1) { while (i--) {
1586 < fullLength) {< len; i++) {<= 0.1) { if (timers[i].elem === el && (!prop || prop === timers[i].prop)) {
1587 < fullLength) {< len; i++) {<= 0.1) { timers[i].stopped = true; // #4667
1588 < fullLength) {< len; i++) {<= 0.1) { }
1589 < fullLength) {< len; i++) {<= 0.1) { }
1590 < fullLength) {< len; i++) {<= 0.1) { };
1591  
1592 < fullLength) {< len; i++) {<= 0.1) { /**
1593 < fullLength) {< len; i++) {<= 0.1) { * Iterate over an array.
1594 < fullLength) {< len; i++) {<= 0.1) { *
1595 < fullLength) {< len; i++) {<= 0.1) { * @function #each
1596 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1597 < fullLength) {< len; i++) {<= 0.1) { * @param {Array} arr - The array to iterate over.
1598 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} fn - The iterator callback. It passes three arguments:
1599 < fullLength) {< len; i++) {<= 0.1) { * * item - The array item.
1600 < fullLength) {< len; i++) {<= 0.1) { * * index - The item's index in the array.
1601 < fullLength) {< len; i++) {<= 0.1) { * * arr - The array that each is being applied to.
1602 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} [ctx] The context.
1603 < fullLength) {< len; i++) {<= 0.1) { */
1604 < fullLength) {< len; i++) {<= 0.1) { H.each = function(arr, fn, ctx) { // modern browsers
1605 < fullLength) {< len; i++) {<= 0.1) { return Array.prototype.forEach.call(arr, fn, ctx);
1606 < fullLength) {< len; i++) {<= 0.1) { };
1607  
1608 < fullLength) {< len; i++) {<= 0.1) { /**
1609 < fullLength) {< len; i++) {<= 0.1) { * Add an event listener.
1610 < fullLength) {< len; i++) {<= 0.1) { *
1611 < fullLength) {< len; i++) {<= 0.1) { * @function #addEvent
1612 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1613 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} el - The element or object to add a listener to. It can be a
1614 < fullLength) {< len; i++) {<= 0.1) { * {@link HTMLDOMElement}, an {@link SVGElement} or any other object.
1615 < fullLength) {< len; i++) {<= 0.1) { * @param {String} type - The event type.
1616 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} fn - The function callback to execute when the event is
1617 < fullLength) {< len; i++) {<= 0.1) { * fired.
1618 < fullLength) {< len; i++) {<= 0.1) { * @returns {Function} A callback function to remove the added event.
1619 < fullLength) {< len; i++) {<= 0.1) { */
1620 < fullLength) {< len; i++) {<= 0.1) { H.addEvent = function(el, type, fn) {
1621  
1622 < fullLength) {< len; i++) {<= 0.1) { var events = el.hcEvents = el.hcEvents || {};
1623  
1624 < fullLength) {< len; i++) {<= 0.1) { function wrappedFn(e) {
1625 < fullLength) {< len; i++) {<= 0.1) { e.target = e.srcElement || win; // #2820
1626 < fullLength) {< len; i++) {<= 0.1) { fn.call(el, e);
1627 < fullLength) {< len; i++) {<= 0.1) { }
1628  
1629 < fullLength) {< len; i++) {<= 0.1) { // Handle DOM events in modern browsers
1630 < fullLength) {< len; i++) {<= 0.1) { if (el.addEventListener) {
1631 < fullLength) {< len; i++) {<= 0.1) { el.addEventListener(type, fn, false);
1632  
1633 < fullLength) {< len; i++) {<= 0.1) { // Handle old IE implementation
1634 < fullLength) {< len; i++) {<= 0.1) { } else if (el.attachEvent) {
1635  
1636 < fullLength) {< len; i++) {<= 0.1) { if (!el.hcEventsIE) {
1637 < fullLength) {< len; i++) {<= 0.1) { el.hcEventsIE = {};
1638 < fullLength) {< len; i++) {<= 0.1) { }
1639  
1640 < fullLength) {< len; i++) {<= 0.1) { // Link wrapped fn with original fn, so we can get this in removeEvent
1641 < fullLength) {< len; i++) {<= 0.1) { el.hcEventsIE[fn.toString()] = wrappedFn;
1642  
1643 < fullLength) {< len; i++) {<= 0.1) { el.attachEvent('on' + type, wrappedFn);
1644 < fullLength) {< len; i++) {<= 0.1) { }
1645  
1646 < fullLength) {< len; i++) {<= 0.1) { if (!events[type]) {
1647 < fullLength) {< len; i++) {<= 0.1) { events[type] = [];
1648 < fullLength) {< len; i++) {<= 0.1) { }
1649  
1650 < fullLength) {< len; i++) {<= 0.1) { events[type].push(fn);
1651  
1652 < fullLength) {< len; i++) {<= 0.1) { // Return a function that can be called to remove this event.
1653 < fullLength) {< len; i++) {<= 0.1) { return function() {
1654 < fullLength) {< len; i++) {<= 0.1) { H.removeEvent(el, type, fn);
1655 < fullLength) {< len; i++) {<= 0.1) { };
1656 < fullLength) {< len; i++) {<= 0.1) { };
1657  
1658 < fullLength) {< len; i++) {<= 0.1) { /**
1659 < fullLength) {< len; i++) {<= 0.1) { * Remove an event that was added with {@link Highcharts#addEvent}.
1660 < fullLength) {< len; i++) {<= 0.1) { *
1661 < fullLength) {< len; i++) {<= 0.1) { * @function #removeEvent
1662 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1663 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} el - The element to remove events on.
1664 < fullLength) {< len; i++) {<= 0.1) { * @param {String} [type] - The type of events to remove. If undefined, all
1665 < fullLength) {< len; i++) {<= 0.1) { * events are removed from the element.
1666 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} [fn] - The specific callback to remove. If undefined, all
1667 < fullLength) {< len; i++) {<= 0.1) { * events that match the element and optionally the type are removed.
1668 < fullLength) {< len; i++) {<= 0.1) { * @returns {void}
1669 < fullLength) {< len; i++) {<= 0.1) { */
1670 < fullLength) {< len; i++) {<= 0.1) { H.removeEvent = function(el, type, fn) {
1671  
1672 < fullLength) {< len; i++) {<= 0.1) { var events,
1673 < fullLength) {< len; i++) {<= 0.1) { hcEvents = el.hcEvents,
1674 < fullLength) {< len; i++) {<= 0.1) { index;
1675  
1676 < fullLength) {< len; i++) {<= 0.1) { function removeOneEvent(type, fn) {
1677 < fullLength) {< len; i++) {<= 0.1) { if (el.removeEventListener) {
1678 < fullLength) {< len; i++) {<= 0.1) { el.removeEventListener(type, fn, false);
1679 < fullLength) {< len; i++) {<= 0.1) { } else if (el.attachEvent) {
1680 < fullLength) {< len; i++) {<= 0.1) { fn = el.hcEventsIE[fn.toString()];
1681 < fullLength) {< len; i++) {<= 0.1) { el.detachEvent('on' + type, fn);
1682 < fullLength) {< len; i++) {<= 0.1) { }
1683 < fullLength) {< len; i++) {<= 0.1) { }
1684  
1685 < fullLength) {< len; i++) {<= 0.1) { function removeAllEvents() {
1686 < fullLength) {< len; i++) {<= 0.1) { var types,
1687 < fullLength) {< len; i++) {<= 0.1) { len,
1688 < fullLength) {< len; i++) {<= 0.1) { n;
1689  
1690 < fullLength) {< len; i++) {<= 0.1) { if (!el.nodeName) {
1691 < fullLength) {< len; i++) {<= 0.1) { return; // break on non-DOM events
1692 < fullLength) {< len; i++) {<= 0.1) { }
1693  
1694 < fullLength) {< len; i++) {<= 0.1) { if (type) {
1695 < fullLength) {< len; i++) {<= 0.1) { types = {};
1696 < fullLength) {< len; i++) {<= 0.1) { types[type] = true;
1697 < fullLength) {< len; i++) {<= 0.1) { } else {
1698 < fullLength) {< len; i++) {<= 0.1) { types = hcEvents;
1699 < fullLength) {< len; i++) {<= 0.1) { }
1700  
1701 < fullLength) {< len; i++) {<= 0.1) { for (n in types) {
1702 < fullLength) {< len; i++) {<= 0.1) { if (hcEvents[n]) {
1703 < fullLength) {< len; i++) {<= 0.1) { len = hcEvents[n].length;
1704 < fullLength) {< len; i++) {<= 0.1) { while (len--) {
1705 < fullLength) {< len; i++) {<= 0.1) { removeOneEvent(n, hcEvents[n][len]);
1706 < fullLength) {< len; i++) {<= 0.1) { }
1707 < fullLength) {< len; i++) {<= 0.1) { }
1708 < fullLength) {< len; i++) {<= 0.1) { }
1709 < fullLength) {< len; i++) {<= 0.1) { }
1710  
1711 < fullLength) {< len; i++) {<= 0.1) { if (hcEvents) {
1712 < fullLength) {< len; i++) {<= 0.1) { if (type) {
1713 < fullLength) {< len; i++) {<= 0.1) { events = hcEvents[type] || [];
1714 < fullLength) {< len; i++) {<= 0.1) { if (fn) {
1715 < fullLength) {< len; i++) {<= 0.1) { index = H.inArray(fn, events);
1716 < fullLength) {< len; i++) {<= 0.1) { if (index > -1) {
1717 < fullLength) {< len; i++) {<= 0.1) { events.splice(index, 1);
1718 < fullLength) {< len; i++) {<= 0.1) { hcEvents[type] = events;
1719 < fullLength) {< len; i++) {<= 0.1) { }
1720 < fullLength) {< len; i++) {<= 0.1) { removeOneEvent(type, fn);
1721  
1722 < fullLength) {< len; i++) {<= 0.1) { } else {
1723 < fullLength) {< len; i++) {<= 0.1) { removeAllEvents();
1724 < fullLength) {< len; i++) {<= 0.1) { hcEvents[type] = [];
1725 < fullLength) {< len; i++) {<= 0.1) { }
1726 < fullLength) {< len; i++) {<= 0.1) { } else {
1727 < fullLength) {< len; i++) {<= 0.1) { removeAllEvents();
1728 < fullLength) {< len; i++) {<= 0.1) { el.hcEvents = {};
1729 < fullLength) {< len; i++) {<= 0.1) { }
1730 < fullLength) {< len; i++) {<= 0.1) { }
1731 < fullLength) {< len; i++) {<= 0.1) { };
1732  
1733 < fullLength) {< len; i++) {<= 0.1) { /**
1734 < fullLength) {< len; i++) {<= 0.1) { * Fire an event that was registered with {@link Highcharts#addEvent}.
1735 < fullLength) {< len; i++) {<= 0.1) { *
1736 < fullLength) {< len; i++) {<= 0.1) { * @function #fireEvent
1737 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1738 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} el - The object to fire the event on. It can be a
1739 < fullLength) {< len; i++) {<= 0.1) { * {@link HTMLDOMElement}, an {@link SVGElement} or any other object.
1740 < fullLength) {< len; i++) {<= 0.1) { * @param {String} type - The type of event.
1741 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} [eventArguments] - Custom event arguments that are passed on
1742 < fullLength) {< len; i++) {<= 0.1) { * as an argument to the event handler.
1743 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} [defaultFunction] - The default function to execute if the
1744 < fullLength) {< len; i++) {<= 0.1) { * other listeners haven't returned false.
1745 < fullLength) {< len; i++) {<= 0.1) { * @returns {void}
1746 < fullLength) {< len; i++) {<= 0.1) { */
1747 < fullLength) {< len; i++) {<= 0.1) { H.fireEvent = function(el, type, eventArguments, defaultFunction) {
1748 < fullLength) {< len; i++) {<= 0.1) { var e,
1749 < fullLength) {< len; i++) {<= 0.1) { hcEvents = el.hcEvents,
1750 < fullLength) {< len; i++) {<= 0.1) { events,
1751 < fullLength) {< len; i++) {<= 0.1) { len,
1752 < fullLength) {< len; i++) {<= 0.1) { i,
1753 < fullLength) {< len; i++) {<= 0.1) { fn;
1754  
1755 < fullLength) {< len; i++) {<= 0.1) { eventArguments = eventArguments || {};
1756  
1757 < fullLength) {< len; i++) {<= 0.1) { if (doc.createEvent && (el.dispatchEvent || el.fireEvent)) {
1758 < fullLength) {< len; i++) {<= 0.1) { e = doc.createEvent('Events');
1759 < fullLength) {< len; i++) {<= 0.1) { e.initEvent(type, true, true);
1760 < fullLength) {< len; i++) {<= 0.1) { //e.target = el;
1761  
1762 < fullLength) {< len; i++) {<= 0.1) { H.extend(e, eventArguments);
1763  
1764 < fullLength) {< len; i++) {<= 0.1) { if (el.dispatchEvent) {
1765 < fullLength) {< len; i++) {<= 0.1) { el.dispatchEvent(e);
1766 < fullLength) {< len; i++) {<= 0.1) { } else {
1767 < fullLength) {< len; i++) {<= 0.1) { el.fireEvent(type, e);
1768 < fullLength) {< len; i++) {<= 0.1) { }
1769  
1770 < fullLength) {< len; i++) {<= 0.1) { } else if (hcEvents) {
1771  
1772 < fullLength) {< len; i++) {<= 0.1) { events = hcEvents[type] || [];
1773 < fullLength) {< len; i++) {<= 0.1) { len = events.length;
1774  
1775 < fullLength) {< len; i++) {<= 0.1) { if (!eventArguments.target) { // We're running a custom event
1776  
1777 < fullLength) {< len; i++) {<= 0.1) { H.extend(eventArguments, {
1778 < fullLength) {< len; i++) {<= 0.1) { // Attach a simple preventDefault function to skip default
1779 < fullLength) {< len; i++) {<= 0.1) { // handler if called. The built-in defaultPrevented property is
1780 < fullLength) {< len; i++) {<= 0.1) { // not overwritable (#5112)
1781 < fullLength) {< len; i++) {<= 0.1) { preventDefault: function() {
1782 < fullLength) {< len; i++) {<= 0.1) { eventArguments.defaultPrevented = true;
1783 < fullLength) {< len; i++) {<= 0.1) { },
1784 < fullLength) {< len; i++) {<= 0.1) { // Setting target to native events fails with clicking the
1785 < fullLength) {< len; i++) {<= 0.1) { // zoom-out button in Chrome.
1786 < fullLength) {< len; i++) {<= 0.1) { target: el,
1787 < fullLength) {< len; i++) {<= 0.1) { // If the type is not set, we're running a custom event (#2297).
1788 < fullLength) {< len; i++) {<= 0.1) { // If it is set, we're running a browser event, and setting it
1789 < fullLength) {< len; i++) {<= 0.1) { // will cause en error in IE8 (#2465).
1790 < fullLength) {< len; i++) {<= 0.1) { type: type
1791 < fullLength) {< len; i++) {<= 0.1) { });
1792 < fullLength) {< len; i++) {<= 0.1) { }
1793  
1794  
1795 < fullLength) {< len; i++) {<= 0.1) { for (i = 0; i < len; i++) {
1796 < fullLength) {< len; i++) {<= 0.1) { fn = events[i];
1797  
1798 < fullLength) {< len; i++) {<= 0.1) { // If the event handler return false, prevent the default handler
1799 < fullLength) {< len; i++) {<= 0.1) { // from executing
1800 < fullLength) {< len; i++) {<= 0.1) { if (fn && fn.call(el, eventArguments) === false) {
1801 < fullLength) {< len; i++) {<= 0.1) { eventArguments.preventDefault();
1802 < fullLength) {< len; i++) {<= 0.1) { }
1803 < fullLength) {< len; i++) {<= 0.1) { }
1804 < fullLength) {< len; i++) {<= 0.1) { }
1805  
1806 < fullLength) {< len; i++) {<= 0.1) { // Run the default if not prevented
1807 < fullLength) {< len; i++) {<= 0.1) { if (defaultFunction && !eventArguments.defaultPrevented) {
1808 < fullLength) {< len; i++) {<= 0.1) { defaultFunction(eventArguments);
1809 < fullLength) {< len; i++) {<= 0.1) { }
1810 < fullLength) {< len; i++) {<= 0.1) { };
1811  
1812 < fullLength) {< len; i++) {<= 0.1) { /**
1813 < fullLength) {< len; i++) {<= 0.1) { * An animation configuration. Animation configurations can also be defined as
1814 < fullLength) {< len; i++) {<= 0.1) { * booleans, where `false` turns off animation and `true` defaults to a duration
1815 < fullLength) {< len; i++) {<= 0.1) { * of 500ms.
1816 < fullLength) {< len; i++) {<= 0.1) { * @typedef {Object} AnimationOptions
1817 < fullLength) {< len; i++) {<= 0.1) { * @property {Number} duration - The animation duration in milliseconds.
1818 < fullLength) {< len; i++) {<= 0.1) { * @property {String} [easing] - The name of an easing function as defined on
1819 < fullLength) {< len; i++) {<= 0.1) { * the `Math` object.
1820 < fullLength) {< len; i++) {<= 0.1) { * @property {Function} [complete] - A callback function to exectute when the
1821 < fullLength) {< len; i++) {<= 0.1) { * animation finishes.
1822 < fullLength) {< len; i++) {<= 0.1) { * @property {Function} [step] - A callback function to execute on each step of
1823 < fullLength) {< len; i++) {<= 0.1) { * each attribute or CSS property that's being animated. The first argument
1824 < fullLength) {< len; i++) {<= 0.1) { * contains information about the animation and progress.
1825 < fullLength) {< len; i++) {<= 0.1) { */
1826  
1827  
1828 < fullLength) {< len; i++) {<= 0.1) { /**
1829 < fullLength) {< len; i++) {<= 0.1) { * The global animate method, which uses Fx to create individual animators.
1830 < fullLength) {< len; i++) {<= 0.1) { *
1831 < fullLength) {< len; i++) {<= 0.1) { * @function #animate
1832 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1833 < fullLength) {< len; i++) {<= 0.1) { * @param {HTMLDOMElement|SVGElement} el - The element to animate.
1834 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} params - An object containing key-value pairs of the
1835 < fullLength) {< len; i++) {<= 0.1) { * properties to animate. Supports numeric as pixel-based CSS properties
1836 < fullLength) {< len; i++) {<= 0.1) { * for HTML objects and attributes for SVGElements.
1837 < fullLength) {< len; i++) {<= 0.1) { * @param {AnimationOptions} [opt] - Animation options.
1838 < fullLength) {< len; i++) {<= 0.1) { */
1839 < fullLength) {< len; i++) {<= 0.1) { H.animate = function(el, params, opt) {
1840 < fullLength) {< len; i++) {<= 0.1) { var start,
1841 < fullLength) {< len; i++) {<= 0.1) { unit = '',
1842 < fullLength) {< len; i++) {<= 0.1) { end,
1843 < fullLength) {< len; i++) {<= 0.1) { fx,
1844 < fullLength) {< len; i++) {<= 0.1) { args,
1845 < fullLength) {< len; i++) {<= 0.1) { prop;
1846  
1847 < fullLength) {< len; i++) {<= 0.1) { if (!H.isObject(opt)) { // Number or undefined/null
1848 < fullLength) {< len; i++) {<= 0.1) { args = arguments;
1849 < fullLength) {< len; i++) {<= 0.1) { opt = {
1850 < fullLength) {< len; i++) {<= 0.1) { duration: args[2],
1851 < fullLength) {< len; i++) {<= 0.1) { easing: args[3],
1852 < fullLength) {< len; i++) {<= 0.1) { complete: args[4]
1853 < fullLength) {< len; i++) {<= 0.1) { };
1854 < fullLength) {< len; i++) {<= 0.1) { }
1855 < fullLength) {< len; i++) {<= 0.1) { if (!H.isNumber(opt.duration)) {
1856 < fullLength) {< len; i++) {<= 0.1) { opt.duration = 400;
1857 < fullLength) {< len; i++) {<= 0.1) { }
1858 < fullLength) {< len; i++) {<= 0.1) { opt.easing = typeof opt.easing === 'function' ?
1859 < fullLength) {< len; i++) {<= 0.1) { opt.easing :
1860 < fullLength) {< len; i++) {<= 0.1) { (Math[opt.easing] || Math.easeInOutSine);
1861 < fullLength) {< len; i++) {<= 0.1) { opt.curAnim = H.merge(params);
1862  
1863 < fullLength) {< len; i++) {<= 0.1) { for (prop in params) {
1864  
1865 < fullLength) {< len; i++) {<= 0.1) { // Stop current running animation of this property
1866 < fullLength) {< len; i++) {<= 0.1) { H.stop(el, prop);
1867  
1868 < fullLength) {< len; i++) {<= 0.1) { fx = new H.Fx(el, opt, prop);
1869 < fullLength) {< len; i++) {<= 0.1) { end = null;
1870  
1871 < fullLength) {< len; i++) {<= 0.1) { if (prop === 'd') {
1872 < fullLength) {< len; i++) {<= 0.1) { fx.paths = fx.initPath(
1873 < fullLength) {< len; i++) {<= 0.1) { el,
1874 < fullLength) {< len; i++) {<= 0.1) { el.d,
1875 < fullLength) {< len; i++) {<= 0.1) { params.d
1876 < fullLength) {< len; i++) {<= 0.1) { );
1877 < fullLength) {< len; i++) {<= 0.1) { fx.toD = params.d;
1878 < fullLength) {< len; i++) {<= 0.1) { start = 0;
1879 < fullLength) {< len; i++) {<= 0.1) { end = 1;
1880 < fullLength) {< len; i++) {<= 0.1) { } else if (el.attr) {
1881 < fullLength) {< len; i++) {<= 0.1) { start = el.attr(prop);
1882 < fullLength) {< len; i++) {<= 0.1) { } else {
1883 < fullLength) {< len; i++) {<= 0.1) { start = parseFloat(H.getStyle(el, prop)) || 0;
1884 < fullLength) {< len; i++) {<= 0.1) { if (prop !== 'opacity') {
1885 < fullLength) {< len; i++) {<= 0.1) { unit = 'px';
1886 < fullLength) {< len; i++) {<= 0.1) { }
1887 < fullLength) {< len; i++) {<= 0.1) { }
1888  
1889 < fullLength) {< len; i++) {<= 0.1) { if (!end) {
1890 < fullLength) {< len; i++) {<= 0.1) { end = params[prop];
1891 < fullLength) {< len; i++) {<= 0.1) { }
1892 < fullLength) {< len; i++) {<= 0.1) { if (end && end.match && end.match('px')) {
1893 < fullLength) {< len; i++) {<= 0.1) { end = end.replace(/px/g, ''); // #4351
1894 < fullLength) {< len; i++) {<= 0.1) { }
1895 < fullLength) {< len; i++) {<= 0.1) { fx.run(start, end, unit);
1896 < fullLength) {< len; i++) {<= 0.1) { }
1897 < fullLength) {< len; i++) {<= 0.1) { };
1898  
1899 < fullLength) {< len; i++) {<= 0.1) { /**
1900 < fullLength) {< len; i++) {<= 0.1) { * Factory to create new series prototypes.
1901 < fullLength) {< len; i++) {<= 0.1) { *
1902 < fullLength) {< len; i++) {<= 0.1) { * @function #seriesType
1903 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1904 < fullLength) {< len; i++) {<= 0.1) { *
1905 < fullLength) {< len; i++) {<= 0.1) { * @param {String} type - The series type name.
1906 < fullLength) {< len; i++) {<= 0.1) { * @param {String} parent - The parent series type name. Use `line` to inherit
1907 < fullLength) {< len; i++) {<= 0.1) { * from the basic {@link Series} object.
1908 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} options - The additional default options that is merged with
1909 < fullLength) {< len; i++) {<= 0.1) { * the parent's options.
1910 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} props - The properties (functions and primitives) to set on
1911 < fullLength) {< len; i++) {<= 0.1) { * the new prototype.
1912 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} [pointProps] - Members for a series-specific extension of the
1913 < fullLength) {< len; i++) {<= 0.1) { * {@link Point} prototype if needed.
1914 < fullLength) {< len; i++) {<= 0.1) { * @returns {*} - The newly created prototype as extended from {@link Series}
1915 < fullLength) {< len; i++) {<= 0.1) { * or its derivatives.
1916 < fullLength) {< len; i++) {<= 0.1) { */
1917 < fullLength) {< len; i++) {<= 0.1) { // docs: add to API + extending Highcharts
1918 < fullLength) {< len; i++) {<= 0.1) { H.seriesType = function(type, parent, options, props, pointProps) {
1919 < fullLength) {< len; i++) {<= 0.1) { var defaultOptions = H.getOptions(),
1920 < fullLength) {< len; i++) {<= 0.1) { seriesTypes = H.seriesTypes;
1921  
1922 < fullLength) {< len; i++) {<= 0.1) { // Merge the options
1923 < fullLength) {< len; i++) {<= 0.1) { defaultOptions.plotOptions[type] = H.merge(
1924 < fullLength) {< len; i++) {<= 0.1) { defaultOptions.plotOptions[parent],
1925 < fullLength) {< len; i++) {<= 0.1) { options
1926 < fullLength) {< len; i++) {<= 0.1) { );
1927  
1928 < fullLength) {< len; i++) {<= 0.1) { // Create the class
1929 < fullLength) {< len; i++) {<= 0.1) { seriesTypes[type] = H.extendClass(seriesTypes[parent] ||
1930 < fullLength) {< len; i++) {<= 0.1) { function() {}, props);
1931 < fullLength) {< len; i++) {<= 0.1) { seriesTypes[type].prototype.type = type;
1932  
1933 < fullLength) {< len; i++) {<= 0.1) { // Create the point class if needed
1934 < fullLength) {< len; i++) {<= 0.1) { if (pointProps) {
1935 < fullLength) {< len; i++) {<= 0.1) { seriesTypes[type].prototype.pointClass =
1936 < fullLength) {< len; i++) {<= 0.1) { H.extendClass(H.Point, pointProps);
1937 < fullLength) {< len; i++) {<= 0.1) { }
1938  
1939 < fullLength) {< len; i++) {<= 0.1) { return seriesTypes[type];
1940 < fullLength) {< len; i++) {<= 0.1) { };
1941  
1942 < fullLength) {< len; i++) {<= 0.1) { /**
1943 < fullLength) {< len; i++) {<= 0.1) { * Get a unique key for using in internal element id's and pointers. The key
1944 < fullLength) {< len; i++) {<= 0.1) { * is composed of a random hash specific to this Highcharts instance, and a
1945 < fullLength) {< len; i++) {<= 0.1) { * counter.
1946 < fullLength) {< len; i++) {<= 0.1) { * @function #uniqueKey
1947 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1948 < fullLength) {< len; i++) {<= 0.1) { * @return {string} The key.
1949 < fullLength) {< len; i++) {<= 0.1) { * @example
1950 < fullLength) {< len; i++) {<= 0.1) { * var id = H.uniqueKey(); // => 'highcharts-x45f6hp-0'
1951 < fullLength) {< len; i++) {<= 0.1) { */
1952 < fullLength) {< len; i++) {<= 0.1) { H.uniqueKey = (function() {
1953  
1954 < fullLength) {< len; i++) {<= 0.1) { var uniqueKeyHash = Math.random().toString(36).substring(2, 9),
1955 < fullLength) {< len; i++) {<= 0.1) { idCounter = 0;
1956  
1957 < fullLength) {< len; i++) {<= 0.1) { return function() {
1958 < fullLength) {< len; i++) {<= 0.1) { return 'highcharts-' + uniqueKeyHash + '-' + idCounter++;
1959 < fullLength) {< len; i++) {<= 0.1) { };
1960 < fullLength) {< len; i++) {<= 0.1) { }());
1961  
1962 < fullLength) {< len; i++) {<= 0.1) { /**
1963 < fullLength) {< len; i++) {<= 0.1) { * Register Highcharts as a plugin in jQuery
1964 < fullLength) {< len; i++) {<= 0.1) { */
1965 < fullLength) {< len; i++) {<= 0.1) { if (win.jQuery) {
1966 < fullLength) {< len; i++) {<= 0.1) { win.jQuery.fn.highcharts = function() {
1967 < fullLength) {< len; i++) {<= 0.1) { var args = [].slice.call(arguments);
1968  
1969 < fullLength) {< len; i++) {<= 0.1) { if (this[0]) { // this[0] is the renderTo div
1970  
1971 < fullLength) {< len; i++) {<= 0.1) { // Create the chart
1972 < fullLength) {< len; i++) {<= 0.1) { if (args[0]) {
1973 < fullLength) {< len; i++) {<= 0.1) { new H[ // eslint-disable-line no-new
1974 < fullLength) {< len; i++) {<= 0.1) { // Constructor defaults to Chart
1975 < fullLength) {< len; i++) {<= 0.1) { H.isString(args[0]) ? args.shift() : 'Chart'
1976 < fullLength) {< len; i++) {<= 0.1) { ](this[0], args[0], args[1]);
1977 < fullLength) {< len; i++) {<= 0.1) { return this;
1978 < fullLength) {< len; i++) {<= 0.1) { }
1979  
1980 < fullLength) {< len; i++) {<= 0.1) { // When called without parameters or with the return argument,
1981 < fullLength) {< len; i++) {<= 0.1) { // return an existing chart
1982 < fullLength) {< len; i++) {<= 0.1) { return charts[H.attr(this[0], 'data-highcharts-chart')];
1983 < fullLength) {< len; i++) {<= 0.1) { }
1984 < fullLength) {< len; i++) {<= 0.1) { };
1985 < fullLength) {< len; i++) {<= 0.1) { }
1986  
1987  
1988 < fullLength) {< len; i++) {<= 0.1) { /**
1989 < fullLength) {< len; i++) {<= 0.1) { * Compatibility section to add support for legacy IE. This can be removed if
1990 < fullLength) {< len; i++) {<= 0.1) { * old IE support is not needed.
1991 < fullLength) {< len; i++) {<= 0.1) { */
1992 < fullLength) {< len; i++) {<= 0.1) { if (doc && !doc.defaultView) {
1993 < fullLength) {< len; i++) {<= 0.1) { H.getStyle = function(el, prop) {
1994 < fullLength) {< len; i++) {<= 0.1) { var val,
1995 < fullLength) {< len; i++) {<= 0.1) { alias = {
1996 < fullLength) {< len; i++) {<= 0.1) { width: 'clientWidth',
1997 < fullLength) {< len; i++) {<= 0.1) { height: 'clientHeight'
1998 < fullLength) {< len; i++) {<= 0.1) { }[prop];
1999  
2000 < fullLength) {< len; i++) {<= 0.1) { if (el.style[prop]) {
2001 < fullLength) {< len; i++) {<= 0.1) { return H.pInt(el.style[prop]);
2002 < fullLength) {< len; i++) {<= 0.1) { }
2003 < fullLength) {< len; i++) {<= 0.1) { if (prop === 'opacity') {
2004 < fullLength) {< len; i++) {<= 0.1) { prop = 'filter';
2005 < fullLength) {< len; i++) {<= 0.1) { }
2006  
2007 < fullLength) {< len; i++) {<= 0.1) { // Getting the rendered width and height
2008 < fullLength) {< len; i++) {<= 0.1) { if (alias) {
2009 < fullLength) {< len; i++) {<= 0.1) { el.style.zoom = 1;
2010 < fullLength) {< len; i++) {<= 0.1) { return Math.max(el[alias] - 2 * H.getStyle(el, 'padding'), 0);
2011 < fullLength) {< len; i++) {<= 0.1) { }
2012  
2013 < fullLength) {< len; i++) {<= 0.1) { val = el.currentStyle[prop.replace(/\-(\w)/g, function(a, b) {
2014 < fullLength) {< len; i++) {<= 0.1) { return b.toUpperCase();
2015 < fullLength) {< len; i++) {<= 0.1) { })];
2016 < fullLength) {< len; i++) {<= 0.1) { if (prop === 'filter') {
2017 < fullLength) {< len; i++) {<= 0.1) { val = val.replace(
2018 < fullLength) {< len; i++) {<= 0.1) { /alpha\(opacity=([0-9]+)\)/,
2019 < fullLength) {< len; i++) {<= 0.1) { function(a, b) {
2020 < fullLength) {< len; i++) {<= 0.1) { return b / 100;
2021 < fullLength) {< len; i++) {<= 0.1) { }
2022 < fullLength) {< len; i++) {<= 0.1) { );
2023 < fullLength) {< len; i++) {<= 0.1) { }
2024  
2025 < fullLength) {< len; i++) {<= 0.1) { return val === '' ? 1 : H.pInt(val);
2026 < fullLength) {< len; i++) {<= 0.1) { };
2027 < fullLength) {< len; i++) {<= 0.1) { }
2028  
2029 < fullLength) {< len; i++) {<= 0.1) { if (!Array.prototype.forEach) {
2030 < fullLength) {< len; i++) {<= 0.1) { H.each = function(arr, fn, ctx) { // legacy
2031 < fullLength) {< len; i++) {<= 0.1) { var i = 0,
2032 < fullLength) {< len; i++) {<= 0.1) { len = arr.length;
2033 < fullLength) {< len; i++) {<= 0.1) { for (; i < len; i++) {
2034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { if (fn.call(ctx, arr[i], i, arr) === false) {
2035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { return i;
2036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { }
2037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { }
2038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { };
2039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { }
2040  
2041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { if (!Array.prototype.indexOf) {
2042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { H.inArray = function(item, arr) {
2043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { var len,
2044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { i = 0;
2045  
2046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { if (arr) {
2047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { len = arr.length;
2048  
2049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { for (; i < len; i++) {
2050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { if (arr[i] === item) {
2051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { return i;
2052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { }
2053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { }
2054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { }
2055  
2056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { return -1;
2057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { };
2058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { }
2059  
2060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { if (!Array.prototype.filter) {
2061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { H.grep = function(elements, fn) {
2062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { var ret = [],
2063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { i = 0,
2064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { length = elements.length;
2065  
2066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { for (; i < length; i++) {
2067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { if (fn(elements[i], i)) {
2068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { ret.push(elements[i]);
2069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { }
2070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { }
2071  
2072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { return ret;
2073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { };
2074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { }
2075  
2076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { if (!Array.prototype.find) {
2077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { H.find = function(arr, fn) {
2078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { var i,
2079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { length = arr.length;
2080  
2081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { for (i = 0; i < length; i++) {
2082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (fn(arr[i], i)) {
2083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return arr[i];
2084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2088  
2089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //--- End compatibility section ---
2090  
2091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }(Highcharts));
2092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (function(H) {
2093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * (c) 2010-2017 Torstein Honsi
2095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * License: www.highcharts.com/license
2097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var each = H.each,
2099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { isNumber = H.isNumber,
2100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { map = H.map,
2101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { merge = H.merge,
2102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pInt = H.pInt;
2103  
2104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @typedef {string} ColorString
2106 < 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
2107 < 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
2108 < 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
2109 < 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
2110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * and apply concepts like opacity and brightening.
2111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Handle color operations. The object methods are chainable.
2114 < 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
2115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.Color = function(input) {
2117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Backwards compatibility, allow instanciation without new
2118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!(this instanceof H.Color)) {
2119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return new H.Color(input);
2120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Initialize
2122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.init(input);
2123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.Color.prototype = {
2125  
2126 < 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
2127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // to Highcharts.Color.prototype.parsers.
2128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { parsers: [{
2129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // RGBA color
2130 < 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*\)/,
2131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { parse: function(result) {
2132 < 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)];
2133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }, {
2135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // RGB color
2136 < 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*\)/,
2137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { parse: function(result) {
2138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return [pInt(result[1]), pInt(result[2]), pInt(result[3]), 1];
2139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }],
2141  
2142 < 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
2143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // colors to Highcharts.Color.prototype.names.
2144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { names: {
2145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { white: '#ffffff',
2146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { black: '#000000'
2147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2148  
2149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Parse the input color to rgba array
2151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {String} input
2152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { init: function(input) {
2154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var result,
2155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba,
2156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { i,
2157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { parser,
2158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { len;
2159  
2160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.input = input = this.names[
2161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { input && input.toLowerCase ?
2162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { input.toLowerCase() :
2163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ''
2164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ] || input;
2165  
2166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Gradients
2167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (input && input.stops) {
2168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.stops = map(input.stops, function(stop) {
2169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return new H.Color(stop[1]);
2170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
2171  
2172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Solid colors
2173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
2174  
2175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Check if it's possible to do bitmasking instead of regex
2176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (input && input[0] === '#') {
2177  
2178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { len = input.length;
2179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { input = parseInt(input.substr(1), 16);
2180  
2181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Handle long-form, e.g. #AABBCC
2182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (len === 7) {
2183  
2184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba = [
2185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (input & 0xFF0000) >> 16,
2186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (input & 0xFF00) >> 8,
2187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (input & 0xFF),
2188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 1
2189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ];
2190  
2191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Handle short-form, e.g. #ABC
2192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // In short form, the value is assumed to be the same
2193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // for both nibbles for each component. e.g. #ABC = #AABBCC
2194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (len === 4) {
2195  
2196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba = [
2197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ((input & 0xF00) >> 4) | (input & 0xF00) >> 8,
2198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ((input & 0xF0) >> 4) | (input & 0xF0),
2199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ((input & 0xF) << 4) | (input & 0xF),
2200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 1
2201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ];
2202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2204  
2205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Otherwise, check regex parsers
2206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!rgba) {
2207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { i = this.parsers.length;
2208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { while (i-- && !rgba) {
2209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { parser = this.parsers[i];
2210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { result = parser.regex.exec(input);
2211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (result) {
2212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba = parser.parse(result);
2213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
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++) { }
2217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.rgba = rgba || [];
2218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2219  
2220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Return the color a specified format
2222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {String} format
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++) { get: function(format) {
2225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var input = this.input,
2226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba = this.rgba,
2227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret;
2228  
2229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.stops) {
2230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret = merge(input);
2231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret.stops = [].concat(ret.stops);
2232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each(this.stops, function(stop, i) {
2233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret.stops[i] = [ret.stops[i][0], stop.get(format)];
2234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
2235  
2236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // it's NaN if gradient colors on a column chart
2237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (rgba && isNumber(rgba[0])) {
2238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (format === 'rgb' || (!format && rgba[3] === 1)) {
2239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret = 'rgb(' + rgba[0] + ',' + rgba[1] + ',' + rgba[2] + ')';
2240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (format === 'a') {
2241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret = rgba[3];
2242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
2243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret = 'rgba(' + rgba.join(',') + ')';
2244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
2246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret = input;
2247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return ret;
2249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2250  
2251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Brighten the color
2253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Number} alpha
2254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { brighten: function(alpha) {
2256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var i,
2257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba = this.rgba;
2258  
2259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.stops) {
2260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each(this.stops, function(stop) {
2261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stop.brighten(alpha);
2262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
2263  
2264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (isNumber(alpha) && alpha !== 0) {
2265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { for (i = 0; i < 3; i++) {
2266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba[i] += pInt(alpha * 255);
2267  
2268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (rgba[i] < 0) {
2269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba[i] = 0;
2270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (rgba[i] > 255) {
2272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba[i] = 255;
2273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
2277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2278  
2279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Set the color's opacity to a given alpha value
2281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Number} alpha
2282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { setOpacity: function(alpha) {
2284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.rgba[3] = alpha;
2285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
2286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.color = function(input) {
2289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return new H.Color(input);
2290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2291  
2292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }(Highcharts));
2293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (function(H) {
2294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * (c) 2010-2017 Torstein Honsi
2296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * License: www.highcharts.com/license
2298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var color = H.color,
2300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each = H.each,
2301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { getTZOffset = H.getTZOffset,
2302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { isTouchDevice = H.isTouchDevice,
2303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { merge = H.merge,
2304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pick = H.pick,
2305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { svg = H.svg,
2306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { win = H.win;
2307  
2308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /* ****************************************************************************
2309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Handle the options *
2310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *****************************************************************************/
2311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.defaultOptions = {
2312  
2313 < 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(' '),
2314  
2315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { symbols: ['circle', 'diamond', 'square', 'triangle', 'triangle-down'],
2316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { lang: {
2317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { loading: 'Loading...',
2318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { months: [
2319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'January', 'February', 'March', 'April', 'May', 'June', 'July',
2320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'August', 'September', 'October', 'November', 'December'
2321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ],
2322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shortMonths: [
2323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul',
2324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
2325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ],
2326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { weekdays: [
2327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'Sunday', 'Monday', 'Tuesday', 'Wednesday',
2328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'Thursday', 'Friday', 'Saturday'
2329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ],
2330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // invalidDate: '',
2331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { decimalPoint: '.',
2332 < 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
2333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { resetZoom: 'Reset zoom',
2334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { resetZoomTitle: 'Reset zoom level 1:1',
2335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { thousandsSep: ' '
2336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { global: {
2338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { useUTC: true,
2339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //timezoneOffset: 0,
2340  
2341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { VMLRadialGradientURL: 'http://code.highcharts.com/5.0.10/gfx/vml-radial-gradient.png'
2342  
2343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { chart: {
2345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //animation: true,
2346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //alignTicks: false,
2347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //reflow: true,
2348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //className: null,
2349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //events: { load, selection },
2350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //margin: [null],
2351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //marginTop: null,
2352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //marginRight: null,
2353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //marginBottom: null,
2354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //marginLeft: null,
2355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { borderRadius: 0,
2356  
2357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { defaultSeriesType: 'line',
2358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ignoreHiddenSeries: true,
2359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //inverted: false,
2360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { spacing: [10, 10, 15, 10],
2361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //spacingTop: 10,
2362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //spacingRight: 10,
2363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //spacingBottom: 15,
2364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //spacingLeft: 10,
2365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //zoomType: ''
2366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { resetZoomButton: {
2367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { theme: {
2368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { zIndex: 20
2369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { position: {
2371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { align: 'right',
2372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { x: -10,
2373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //verticalAlign: 'top',
2374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y: 10
2375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // relativeTo: 'plot'
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++) { width: null,
2379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { height: null,
2380  
2381  
2382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { borderColor: '#335cad',
2383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //borderWidth: 0,
2384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //style: {
2385 < 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
2386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // fontSize: '12px'
2387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //},
2388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { backgroundColor: '#ffffff',
2389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //plotBackgroundColor: null,
2390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { plotBorderColor: '#cccccc'
2391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //plotBorderWidth: 0,
2392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //plotShadow: false
2393  
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++) { title: {
2396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { text: 'Chart title',
2397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { align: 'center',
2398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // floating: false,
2399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { margin: 15,
2400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // x: 0,
2401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // verticalAlign: 'top',
2402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // y: null,
2403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // style: {}, // defined inline
2404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { widthAdjust: -44
2405  
2406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { subtitle: {
2408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { text: '',
2409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { align: 'center',
2410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // floating: false
2411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // x: 0,
2412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // verticalAlign: 'top',
2413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // y: null,
2414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // style: {}, // defined inline
2415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { widthAdjust: -44
2416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2417  
2418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { plotOptions: {},
2419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { labels: {
2420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //items: [],
2421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { style: {
2422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //font: defaultFont,
2423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { position: 'absolute',
2424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color: '#333333'
2425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
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++) { legend: {
2428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { enabled: true,
2429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { align: 'center',
2430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //floating: false,
2431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { layout: 'horizontal',
2432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { labelFormatter: function() {
2433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this.name;
2434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //borderWidth: 0,
2436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { borderColor: '#999999',
2437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { borderRadius: 0,
2438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { navigation: {
2439  
2440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { activeColor: '#003399',
2441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { inactiveColor: '#cccccc'
2442  
2443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // animation: true,
2444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // arrowSize: 12
2445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // style: {} // text styles
2446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // margin: 20,
2448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // reversed: false,
2449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // backgroundColor: null,
2450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /*style: {
2451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { padding: '5px'
2452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },*/
2453  
2454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { itemStyle: {
2455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color: '#333333',
2456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontSize: '12px',
2457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontWeight: 'bold'
2458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { itemHoverStyle: {
2460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //cursor: 'pointer', removed as of #601
2461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color: '#000000'
2462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { itemHiddenStyle: {
2464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color: '#cccccc'
2465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadow: false,
2467  
2468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { itemCheckboxStyle: {
2469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { position: 'absolute',
2470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { width: '13px', // for IE precision
2471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { height: '13px'
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++) { // itemWidth: undefined,
2474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { squareSymbol: true,
2475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // symbolRadius: 0,
2476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // symbolWidth: 16,
2477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { symbolPadding: 5,
2478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { verticalAlign: 'bottom',
2479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // width: undefined,
2480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { x: 0,
2481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y: 0,
2482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { title: {
2483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //text: null,
2484  
2485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { style: {
2486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontWeight: 'bold'
2487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2488  
2489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2491  
2492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { loading: {
2493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // hideDuration: 100,
2494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // showDuration: 0,
2495  
2496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { labelStyle: {
2497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontWeight: 'bold',
2498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { position: 'relative',
2499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { top: '45%'
2500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { style: {
2502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { position: 'absolute',
2503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { backgroundColor: '#ffffff',
2504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { opacity: 0.5,
2505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { textAlign: 'center'
2506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2507  
2508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2509  
2510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tooltip: {
2511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { enabled: true,
2512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { animation: svg,
2513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //crosshairs: null,
2514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { borderRadius: 3,
2515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { dateTimeLabelFormats: {
2516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { millisecond: '%A, %b %e, %H:%M:%S.%L',
2517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { second: '%A, %b %e, %H:%M:%S',
2518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { minute: '%A, %b %e, %H:%M',
2519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hour: '%A, %b %e, %H:%M',
2520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { day: '%A, %b %e, %Y',
2521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { week: 'Week from %A, %b %e, %Y',
2522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { month: '%B %Y',
2523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { year: '%Y'
2524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { footerFormat: '',
2526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //formatter: defaultFormatter,
2527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /* todo: em font-size when finished comparing against HC4
2528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { headerFormat: '<span style="font-size: 0.85em">{point.key}</span><br/>',
2529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { padding: 8,
2531  
2532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //shape: 'callout',
2533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //shared: false,
2534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { snap: isTouchDevice ? 25 : 10,
2535  
2536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { backgroundColor: color('#f7f7f7').setOpacity(0.85).get(),
2537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { borderWidth: 1,
2538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { headerFormat: '<span style="font-size: 10px">{point.key}</span><br/>',
2539 < 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/>',
2540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadow: true,
2541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { style: {
2542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color: '#333333',
2543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cursor: 'default',
2544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontSize: '12px',
2545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pointerEvents: 'none', // #1686 http://caniuse.com/#feat=pointer-events
2546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { whiteSpace: 'nowrap'
2547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2548  
2549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //xDateFormat: '%A, %b %e, %Y',
2550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //valueDecimals: null,
2551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //valuePrefix: '',
2552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //valueSuffix: ''
2553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2554  
2555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { credits: {
2556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { enabled: true,
2557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { href: 'http://www.highcharts.com',
2558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { position: {
2559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { align: 'right',
2560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { x: -10,
2561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { verticalAlign: 'bottom',
2562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y: -5
2563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2564  
2565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { style: {
2566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cursor: 'pointer',
2567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color: '#999999',
2568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontSize: '9px'
2569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2570  
2571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { text: 'Highcharts.com'
2572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2574  
2575  
2576  
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++) { * Sets the getTimezoneOffset function. If the timezone option is set, a default
2579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * getTimezoneOffset function with that timezone is returned. If not, the
2580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * specified getTimezoneOffset function is returned. If neither are specified,
2581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * undefined is returned.
2582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @return {function} a getTimezoneOffset function or undefined
2583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { function getTimezoneOffsetOption() {
2585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var globalOptions = H.defaultOptions.global,
2586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { moment = win.moment;
2587  
2588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (globalOptions.timezone) {
2589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!moment) {
2590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // getTimezoneOffset-function stays undefined because it depends on
2591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Moment.js
2592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.error(25);
2593  
2594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
2595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return function(timestamp) {
2596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return -moment.tz(
2597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { timestamp,
2598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { globalOptions.timezone
2599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ).utcOffset();
2600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2603  
2604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // If not timezone is set, look for the getTimezoneOffset callback
2605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return globalOptions.useUTC && globalOptions.getTimezoneOffset;
2606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2607  
2608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2609 < 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
2610 < 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
2611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Highcharts and after running `Highcharts.setOptions`.
2612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @private
2614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { function setTimeMethods() {
2616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var globalOptions = H.defaultOptions.global,
2617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Date,
2618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { useUTC = globalOptions.useUTC,
2619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { GET = useUTC ? 'getUTC' : 'get',
2620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { SET = useUTC ? 'setUTC' : 'set';
2621  
2622 < 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
2623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Date.hcTimezoneOffset = useUTC && globalOptions.timezoneOffset;
2624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Date.hcGetTimezoneOffset = getTimezoneOffsetOption();
2625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Date.hcMakeTime = function(year, month, date, hours, minutes, seconds) {
2626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var d;
2627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (useUTC) {
2628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { d = Date.UTC.apply(0, arguments);
2629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { d += getTZOffset(d);
2630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
2631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { d = new Date(
2632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { year,
2633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { month,
2634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pick(date, 1),
2635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pick(hours, 0),
2636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pick(minutes, 0),
2637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pick(seconds, 0)
2638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ).getTime();
2639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return d;
2641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each(['Minutes', 'Hours', 'Day', 'Date', 'Month', 'FullYear'], function(s) {
2643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Date['hcGet' + s] = GET + s;
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++) { each(['Milliseconds', 'Seconds', 'Minutes', 'Hours', 'Date', 'Month', 'FullYear'], function(s) {
2646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Date['hcSet' + s] = SET + s;
2647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
2648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2649  
2650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2651 < 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 structure
2652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Object} options The new custom options
2653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.setOptions = function(options) {
2655  
2656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Copy in the default options
2657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.defaultOptions = merge(true, H.defaultOptions, options);
2658  
2659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Apply UTC
2660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { setTimeMethods();
2661  
2662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return H.defaultOptions;
2663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2664  
2665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2666 < 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
2667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * wasn't enough because the setOptions method created a new object.
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++) { H.getOptions = function() {
2670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return H.defaultOptions;
2671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2672  
2673  
2674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Series defaults
2675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.defaultPlotOptions = H.defaultOptions.plotOptions;
2676  
2677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // set the default time methods
2678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { setTimeMethods();
2679  
2680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }(Highcharts));
2681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (function(H) {
2682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * (c) 2010-2017 Torstein Honsi
2684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * License: www.highcharts.com/license
2686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var SVGElement,
2688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { SVGRenderer,
2689  
2690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { addEvent = H.addEvent,
2691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { animate = H.animate,
2692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attr = H.attr,
2693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { charts = H.charts,
2694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color = H.color,
2695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { css = H.css,
2696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { createElement = H.createElement,
2697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { defined = H.defined,
2698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { deg2rad = H.deg2rad,
2699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { destroyObjectProperties = H.destroyObjectProperties,
2700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { doc = H.doc,
2701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each = H.each,
2702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { extend = H.extend,
2703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { erase = H.erase,
2704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { grep = H.grep,
2705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hasTouch = H.hasTouch,
2706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { inArray = H.inArray,
2707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { isArray = H.isArray,
2708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { isFirefox = H.isFirefox,
2709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { isMS = H.isMS,
2710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { isObject = H.isObject,
2711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { isString = H.isString,
2712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { isWebKit = H.isWebKit,
2713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { merge = H.merge,
2714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { noop = H.noop,
2715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pick = H.pick,
2716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pInt = H.pInt,
2717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { removeEvent = H.removeEvent,
2718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { splat = H.splat,
2719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stop = H.stop,
2720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { svg = H.svg,
2721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { SVG_NS = H.SVG_NS,
2722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { symbolSizes = H.symbolSizes,
2723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { win = H.win;
2724  
2725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @typedef {Object} SVGDOMElement - An SVG DOM element.
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++) { /**
2729 < 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
2730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * rendering layer of Highcharts. Combined with the {@link SVGRenderer} object,
2731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * these prototypes allow freeform annotation in the charts or even in HTML
2732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * pages without instanciating a chart. The SVGElement can also wrap HTML
2733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * labels, when `text` or `label` elements are created with the `useHTML`
2734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * parameter.
2735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * The SVGElement instances are created through factory functions on the
2737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * {@link SVGRenderer} object, like [rect]{@link SVGRenderer#rect},
2738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * [path]{@link SVGRenderer#path}, [text]{@link SVGRenderer#text}, [label]{@link
2739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * SVGRenderer#label}, [g]{@link SVGRenderer#g} and more.
2740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @class
2742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { SVGElement = H.SVGElement = function() {
2744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
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++) { SVGElement.prototype = {
2747  
2748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Default base for animation
2749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { opacity: 1,
2750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { SVG_NS: SVG_NS,
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++) { * For labels, these CSS properties are applied to the `text` node directly.
2754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @type {Array.<string>}
2755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { textProps: ['direction', 'fontSize', 'fontWeight', 'fontFamily',
2757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'fontStyle', 'color', 'lineHeight', 'width', 'textAlign',
2758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'textDecoration', 'textOverflow', 'textOutline'
2759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ],
2760  
2761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Initialize the SVG renderer. This function only exists to make the
2763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * initiation process overridable. It should not be called directly.
2764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {SVGRenderer} renderer The SVGRenderer instance to initialize to.
2766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {String} nodeName The SVG node name.
2767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {void}
2768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { init: function(renderer, nodeName) {
2770  
2771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2772 < 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
2773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * may also represent more nodes.
2774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @type {SVGDOMNode|HTMLDOMNode}
2775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.element = nodeName === 'span' ?
2777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { createElement(nodeName) :
2778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { doc.createElementNS(this.SVG_NS, nodeName);
2779  
2780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * The renderer that the SVGElement belongs to.
2782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @type {SVGRenderer}
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++) { this.renderer = renderer;
2785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2786  
2787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Animate to given attributes or CSS properties.
2789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {SVGAttributes} params SVG attributes or CSS to animate.
2791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {AnimationOptions} [options] Animation options.
2792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Function} [complete] Function to perform at the end of animation.
2793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {SVGElement} Returns the SVGElement for chaining.
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++) { animate: function(params, options, complete) {
2796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var animOptions = H.animObject(
2797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pick(options, this.renderer.globalAnimation, true)
2798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
2799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (animOptions.duration !== 0) {
2800 < 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
2801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { animOptions.complete = complete;
2802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { animate(this, params, animOptions);
2804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
2805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.attr(params, null, complete);
2806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (animOptions.step) {
2807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { animOptions.step.call(this);
2808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
2811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2812  
2813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @typedef {Object} GradientOptions
2815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Object} linearGradient Holds an object that defines the start
2816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * position and the end position relative to the shape.
2817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Number} linearGradient.x1 Start horizontal position of the
2818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * gradient. Ranges 0-1.
2819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Number} linearGradient.x2 End horizontal position of the
2820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * gradient. Ranges 0-1.
2821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Number} linearGradient.y1 Start vertical position of the
2822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * gradient. Ranges 0-1.
2823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Number} linearGradient.y2 End vertical position of the
2824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * gradient. Ranges 0-1.
2825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Object} radialGradient Holds an object that defines the center
2826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * position and the radius.
2827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Number} radialGradient.cx Center horizontal position relative
2828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * to the shape. Ranges 0-1.
2829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Number} radialGradient.cy Center vertical position relative
2830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * to the shape. Ranges 0-1.
2831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Number} radialGradient.r Radius relative to the shape. Ranges
2832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * 0-1.
2833 < 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
2834 < 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
2835 < 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
2836 < 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
2837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * rgba format.
2838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @example
2840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * // Linear gradient used as a color option
2841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * color: {
2842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * linearGradient: { x1: 0, x2: 0, y1: 0, y2: 1 },
2843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * stops: [
2844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * [0, '#003399'], // start
2845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * [0.5, '#ffffff'], // middle
2846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * [1, '#3366AA'] // end
2847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * ]
2848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * }
2849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * }
2850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2852 < 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
2853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * object. This function is called from the attribute setters.
2854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @private
2856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {GradientOptions} color The gradient options structure.
2857 < 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
2858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * `stroke`.
2859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {SVGDOMElement} elem SVG DOM element to apply the gradient on.
2860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { colorGradient: function(color, prop, elem) {
2862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var renderer = this.renderer,
2863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { colorObject,
2864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradName,
2865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradAttr,
2866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { radAttr,
2867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradients,
2868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradientObject,
2869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stops,
2870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stopColor,
2871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stopOpacity,
2872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { radialReference,
2873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { n,
2874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { id,
2875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key = [],
2876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { value;
2877  
2878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Apply linear or radial gradients
2879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (color.radialGradient) {
2880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradName = 'radialGradient';
2881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (color.linearGradient) {
2882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradName = 'linearGradient';
2883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2884  
2885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (gradName) {
2886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradAttr = color[gradName];
2887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradients = renderer.gradients;
2888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stops = color.stops;
2889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { radialReference = elem.radialReference;
2890  
2891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Keep < 2.2 kompatibility
2892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (isArray(gradAttr)) {
2893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color[gradName] = gradAttr = {
2894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { x1: gradAttr[0],
2895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y1: gradAttr[1],
2896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { x2: gradAttr[2],
2897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y2: gradAttr[3],
2898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradientUnits: 'userSpaceOnUse'
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++) { }
2901  
2902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Correct the radial gradient for the radial reference system
2903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (
2904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradName === 'radialGradient' &&
2905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { radialReference &&
2906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { !defined(gradAttr.gradientUnits)
2907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ) {
2908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { radAttr = gradAttr; // Save the radial attributes for updating
2909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradAttr = merge(
2910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradAttr,
2911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { renderer.getRadialAttr(radialReference, radAttr), {
2912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradientUnits: 'userSpaceOnUse'
2913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
2915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2916  
2917 < 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)
2918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { for (n in gradAttr) {
2919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (n !== 'id') {
2920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key.push(n, gradAttr[n]);
2921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { for (n in stops) {
2924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key.push(stops[n]);
2925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key = key.join(',');
2927  
2928 < 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
2929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (gradients[key]) {
2930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { id = gradients[key].attr('id');
2931  
2932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
2933  
2934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Set the id and create the element
2935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradAttr.id = id = H.uniqueKey();
2936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradients[key] = gradientObject = renderer.createElement(gradName)
2937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { .attr(gradAttr)
2938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { .add(renderer.defs);
2939  
2940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradientObject.radAttr = radAttr;
2941  
2942 < 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
2943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradientObject.stops = [];
2944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each(stops, function(stop) {
2945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var stopObject;
2946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (stop[1].indexOf('rgba') === 0) {
2947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { colorObject = H.color(stop[1]);
2948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stopColor = colorObject.get('rgb');
2949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stopOpacity = colorObject.get('a');
2950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
2951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stopColor = stop[1];
2952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stopOpacity = 1;
2953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stopObject = renderer.createElement('stop').attr({
2955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { offset: stop[0],
2956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'stop-color': stopColor,
2957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'stop-opacity': stopOpacity
2958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }).add(gradientObject);
2959  
2960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Add the stop element to the gradient
2961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradientObject.stops.push(stopObject);
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++) { }
2964  
2965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Set the reference to the gradient object
2966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { value = 'url(' + renderer.url + '#' + id + ')';
2967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { elem.setAttribute(prop, value);
2968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { elem.gradient = key;
2969  
2970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Allow the color to be concatenated into tooltips formatters etc. (#2995)
2971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color.toString = function() {
2972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return value;
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++) { }
2975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2976  
2977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2978 < 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
2979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * element and apply stroke to the copy. Used internally. Contrast checks
2980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * at http://jsfiddle.net/highcharts/43soe9m1/2/ .
2981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @private
2983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {String} textOutline A custom CSS `text-outline` setting, defined
2984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * by `width color`.
2985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @example
2986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * // Specific color
2987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * text.css({
2988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * textOutline: '1px black'
2989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * });
2990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * // Automatic contrast
2991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * text.css({
2992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * color: '#000000', // black text
2993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * textOutline: '1px contrast' // => white outline
2994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * });
2995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { applyTextOutline: function(textOutline) {
2997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var elem = this.element,
2998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tspans,
2999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tspan,
3000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hasContrast = textOutline.indexOf('contrast') !== -1,
3001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles = {},
3002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color,
3003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { strokeWidth,
3004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { firstRealChild,
3005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { i;
3006  
3007 < 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
3008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // text and vice versa.
3009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (hasContrast) {
3010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles.textOutline = textOutline = textOutline.replace(
3011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /contrast/g,
3012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.renderer.getContrast(elem.style.fill)
3013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
3014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3015  
3016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Extract the stroke width and color
3017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { textOutline = textOutline.split(' ');
3018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color = textOutline[textOutline.length - 1];
3019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { strokeWidth = textOutline[0];
3020  
3021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (strokeWidth && strokeWidth !== 'none' && H.svg) {
3022  
3023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.fakeTS = true; // Fake text shadow
3024  
3025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tspans = [].slice.call(elem.getElementsByTagName('tspan'));
3026  
3027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // In order to get the right y position of the clone,
3028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // copy over the y setter
3029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.ySetter = this.xSetter;
3030  
3031 < 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
3032 < 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
3033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // glyphs.
3034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { strokeWidth = strokeWidth.replace(
3035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /(^[\d\.]+)(.*?)$/g,
3036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { function(match, digit, unit) {
3037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return (2 * digit) + unit;
3038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
3040  
3041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Remove shadows from previous runs. Iterate from the end to
3042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // support removing items inside the cycle (#6472).
3043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { i = tspans.length;
3044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { while (i--) {
3045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tspan = tspans[i];
3046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (tspan.getAttribute('class') === 'highcharts-text-outline') {
3047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Remove then erase
3048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { erase(tspans, elem.removeChild(tspan));
3049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3051  
3052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // For each of the tspans, create a stroked copy behind it.
3053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { firstRealChild = elem.firstChild;
3054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each(tspans, function(tspan, y) {
3055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var clone;
3056  
3057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Let the first line start at the correct X position
3058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (y === 0) {
3059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tspan.setAttribute('x', elem.getAttribute('x'));
3060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y = elem.getAttribute('y');
3061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tspan.setAttribute('y', y || 0);
3062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (y === null) {
3063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { elem.setAttribute('y', 0);
3064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3066  
3067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Create the clone and apply outline properties
3068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { clone = tspan.cloneNode(1);
3069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attr(clone, {
3070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'class': 'highcharts-text-outline',
3071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'fill': color,
3072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'stroke': color,
3073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'stroke-width': strokeWidth,
3074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'stroke-linejoin': 'round'
3075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { elem.insertBefore(clone, firstRealChild);
3077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3080  
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++) { *
3083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @typedef {Object} SVGAttributes An object of key-value pairs for SVG
3084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * attributes. Attributes in Highcharts elements for the most parts
3085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * correspond to SVG, but some are specific to Highcharts, like `zIndex`,
3086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * `rotation`, `translateX`, `translateY`, `scaleX` and `scaleY`. SVG
3087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * attributes containing a hyphen are _not_ camel-cased, they should be
3088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * quoted to preserve the hyphen.
3089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @example
3090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * {
3091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * 'stroke': '#ff0000', // basic
3092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * 'stroke-width': 2, // hyphenated
3093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * 'rotation': 45 // custom
3094 < 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
3095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * }
3096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Apply native and custom attributes to the SVG elements.
3099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3100 < 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
3101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * use `translateX` and `translateY` attributes to position the element
3102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * instead.
3103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Attributes frequently used in Highcharts are `fill`, `stroke`,
3105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * `stroke-width`.
3106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {SVGAttributes|String} hash - The native and custom SVG
3108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * attributes.
3109 < 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`,
3110 < 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
3111 < 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,
3112 < 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
3113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * is returned.
3114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Function} complete - A callback function to execute after setting
3115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * the attributes. This makes the function compliant and interchangeable
3116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * with the {@link SVGElement#animate} function.
3117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {boolean} continueAnimation - Used internally when `.attr` is
3118 < 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
3119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * attribute will stop animation for that attribute.
3120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3121 < 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
3122 < 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
3123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * getter, the current value of the attribute is returned.
3124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @example
3126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * // Set multiple attributes
3127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * element.attr({
3128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * stroke: 'red',
3129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * fill: 'blue',
3130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * x: 10,
3131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * y: 10
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++) { * // Set a single attribute
3135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * element.attr('stroke', 'red');
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++) { * // Get an attribute
3138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * element.attr('stroke'); // => 'red'
3139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
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++) { attr: function(hash, val, complete, continueAnimation) {
3142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var key,
3143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { value,
3144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element = this.element,
3145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hasSetSymbolSize,
3146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret = this,
3147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { skipAttr,
3148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { setter;
3149  
3150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // single key-value pair
3151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (typeof hash === 'string' && val !== undefined) {
3152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key = hash;
3153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hash = {};
3154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hash[key] = val;
3155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3156  
3157 < 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
3158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (typeof hash === 'string') {
3159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret = (this[hash + 'Getter'] || this._defaultGetter).call(this, hash, element);
3160  
3161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // setter
3162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
3163  
3164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { for (key in hash) {
3165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { value = hash[key];
3166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { skipAttr = false;
3167  
3168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Unless .attr is from the animator update, stop current
3169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // running animation of this property
3170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!continueAnimation) {
3171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stop(this, key);
3172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3173  
3174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Special handling of symbol attributes
3175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (
3176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.symbolName &&
3177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /^(x|y|width|height|r|start|end|innerR|anchorX|anchorY)$/
3178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { .test(key)
3179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ) {
3180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!hasSetSymbolSize) {
3181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.symbolAttr(hash);
3182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hasSetSymbolSize = true;
3183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { skipAttr = true;
3185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3186  
3187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.rotation && (key === 'x' || key === 'y')) {
3188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.doTransform = true;
3189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3190  
3191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!skipAttr) {
3192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { setter = this[key + 'Setter'] || this._defaultSetter;
3193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { setter.call(this, value, key, element);
3194  
3195  
3196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Let the shadow follow the main element
3197 < 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)) {
3198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.updateShadows(key, value, setter);
3199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3200  
3201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3203  
3204 < 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
3205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // of attributes.
3206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.doTransform) {
3207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.updateTransform();
3208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.doTransform = false;
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++) { }
3212  
3213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // In accordance with animate, run a complete callback
3214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (complete) {
3215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { complete();
3216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3217  
3218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return ret;
3219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3220  
3221  
3222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Update the shadow elements with new attributes.
3224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @private
3226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {String} key - The attribute name.
3227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {String|Number} value - The value of the attribute.
3228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Function} setter - The setter function, inherited from the
3229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * parent wrapper
3230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {void}
3231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { updateShadows: function(key, value, setter) {
3233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var shadows = this.shadows,
3234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { i = shadows.length;
3235  
3236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { while (i--) {
3237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { setter.call(
3238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadows[i],
3239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key === 'height' ?
3240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Math.max(value - (shadows[i].cutHeight || 0), 0) :
3241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key === 'd' ? this.d : value,
3242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key,
3243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadows[i]
3244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
3245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3247  
3248  
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++) { * Add a class name to an element.
3251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {string} className - The new class name to add.
3253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {boolean} [replace=false] - When true, the existing class name(s)
3254 < 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
3255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * added.
3256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {SVGElement} Return the SVG element for chainability.
3257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { addClass: function(className, replace) {
3259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var currentClassName = this.attr('class') || '';
3260  
3261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (currentClassName.indexOf(className) === -1) {
3262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!replace) {
3263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { className =
3264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (currentClassName + (currentClassName ? ' ' : '') +
3265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { className).replace(' ', ' ');
3266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.attr('class', className);
3268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
3270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3271  
3272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Check if an element has the given class name.
3274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {string} className - The class name to check for.
3275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @return {Boolean}
3276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hasClass: function(className) {
3278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return attr(this.element, 'class').indexOf(className) !== -1;
3279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3280  
3281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Remove a class name from the element.
3283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {string} className The class name to remove.
3284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @return {SVGElement} Returns the SVG element for chainability.
3285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { removeClass: function(className) {
3287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attr(this.element, 'class', (attr(this.element, 'class') || '').replace(className, ''));
3288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
3289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3290  
3291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * If one of the symbol size affecting parameters are changed,
3293 < 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
3294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * .attr() method
3295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Object} hash - The attributes to set.
3296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @private
3297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { symbolAttr: function(hash) {
3299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var wrapper = this;
3300  
3301 < 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) {
3302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper[key] = pick(hash[key], wrapper[key]);
3303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3304  
3305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.attr({
3306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { d: wrapper.renderer.symbols[wrapper.symbolName](
3307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.x,
3308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.y,
3309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.width,
3310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.height,
3311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper
3312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { )
3313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3315  
3316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Apply a clipping rectangle to this element.
3318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {ClipRect} [clipRect] - The clipping rectangle. If skipped, the
3320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * current clip is removed.
3321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {SVGElement} Returns the SVG element to allow chaining.
3322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { clip: function(clipRect) {
3324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this.attr(
3325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'clip-path',
3326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { clipRect ?
3327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'url(' + this.renderer.url + '#' + clipRect.id + ')' :
3328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'none'
3329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
3330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3331  
3332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Calculate the coordinates needed for drawing a rectangle crisply and
3334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * return the calculated attributes.
3335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Object} rect - A rectangle.
3337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} rect.x - The x position.
3338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} rect.y - The y position.
3339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} rect.width - The width.
3340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} rect.height - The height.
3341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} [strokeWidth] - The stroke width to consider when
3342 < 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
3343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * parameter.
3344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {{x: Number, y: Number, width: Number, height: Number}} The
3346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * modified rectangle arguments.
3347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { crisp: function(rect, strokeWidth) {
3349  
3350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var wrapper = this,
3351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key,
3352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attribs = {},
3353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { normalizer;
3354  
3355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { strokeWidth = strokeWidth || rect.strokeWidth || 0;
3356 < 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
3357  
3358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // normalize for crisp edges
3359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rect.x = Math.floor(rect.x || wrapper.x || 0) + normalizer;
3360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rect.y = Math.floor(rect.y || wrapper.y || 0) + normalizer;
3361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rect.width = Math.floor((rect.width || wrapper.width || 0) - 2 * normalizer);
3362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rect.height = Math.floor((rect.height || wrapper.height || 0) - 2 * normalizer);
3363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (defined(rect.strokeWidth)) {
3364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rect.strokeWidth = strokeWidth;
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++) { for (key in rect) {
3368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (wrapper[key] !== rect[key]) { // only set attribute if changed
3369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper[key] = attribs[key] = rect[key];
3370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3372  
3373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return attribs;
3374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3375  
3376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3377 < 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
3378 < 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
3379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Highcharts, like `width`, `ellipsis` and `textOverflow` for SVG text
3380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * elements.
3381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {CSSObject} styles The new CSS styles.
3382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {SVGElement} Return the SVG element for chaining.
3383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { css: function(styles) {
3385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var oldStyles = this.styles,
3386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { newStyles = {},
3387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { elem = this.element,
3388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { textWidth,
3389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { n,
3390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { serializedCss = '',
3391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hyphenate,
3392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hasNew = !oldStyles,
3393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // These CSS properties are interpreted internally by the SVG
3394 < 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
3395 < 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
3396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // whatsoever (#6173, #6474).
3397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { svgPseudoProps = ['textOutline', 'textOverflow', 'width'];
3398  
3399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // convert legacy
3400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (styles && styles.color) {
3401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles.fill = styles.color;
3402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3403  
3404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Filter out existing styles to increase performance (#2640)
3405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (oldStyles) {
3406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { for (n in styles) {
3407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (styles[n] !== oldStyles[n]) {
3408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { newStyles[n] = styles[n];
3409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hasNew = true;
3410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; 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++) { if (hasNew) {
3414  
3415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Merge the new styles with the old ones
3416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (oldStyles) {
3417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles = extend(
3418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { oldStyles,
3419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { newStyles
3420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
3421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3422  
3423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Get the text width from style
3424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { textWidth = this.textWidth = (
3425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles &&
3426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles.width &&
3427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles.width !== 'auto' &&
3428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { elem.nodeName.toLowerCase() === 'text' &&
3429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pInt(styles.width)
3430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
3431  
3432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // store object
3433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.styles = styles;
3434  
3435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (textWidth && (!svg && this.renderer.forExport)) {
3436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { delete styles.width;
3437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3438  
3439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // serialize and set style attribute
3440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (isMS && !svg) {
3441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { css(this.element, styles);
3442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
3443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hyphenate = function(a, b) {
3444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return '-' + b.toLowerCase();
3445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
3446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { for (n in styles) {
3447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (inArray(n, svgPseudoProps) === -1) {
3448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { serializedCss +=
3449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { n.replace(/([A-Z])/g, hyphenate) + ':' +
3450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles[n] + ';';
3451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (serializedCss) {
3454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attr(elem, 'style', serializedCss); // #1881
3455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3457  
3458  
3459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.added) {
3460  
3461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Rebuild text after added. Cache mechanisms in the buildText
3462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // will prevent building if there are no significant changes.
3463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.element.nodeName === 'text') {
3464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.renderer.buildText(this);
3465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3466  
3467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Apply text outline after added
3468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (styles && styles.textOutline) {
3469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.applyTextOutline(styles.textOutline);
3470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3473  
3474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
3475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3476  
3477  
3478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3479 < 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
3480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * directly on the element.
3481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {number} The stroke width in pixels.
3482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @ignore
3483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { strokeWidth: function() {
3485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this['stroke-width'] || 0;
3486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3487  
3488  
3489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3490 < 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
3491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * events of the same type, opposed to the {@link Highcharts#addEvent}
3492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * function.
3493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {string} eventType - The event type. If the type is `click`,
3494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Highcharts will internally translate it to a `touchstart` event on
3495 < 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
3496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * from firing.
3497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Function} handler - The handler callback.
3498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {SVGElement} The SVGElement for chaining.
3499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { on: function(eventType, handler) {
3501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var svgElement = this,
3502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element = svgElement.element;
3503  
3504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // touch
3505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (hasTouch && eventType === 'click') {
3506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element.ontouchstart = function(e) {
3507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { svgElement.touchEventFired = Date.now(); // #2269
3508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { e.preventDefault();
3509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { handler.call(element, e);
3510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
3511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element.onclick = function(e) {
3512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (win.navigator.userAgent.indexOf('Android') === -1 ||
3513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Date.now() - (svgElement.touchEventFired || 0) > 1100) {
3514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { handler.call(element, e);
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++) { };
3517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
3518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // simplest possible event model for internal use
3519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element['on' + eventType] = handler;
3520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
3522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3523  
3524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Set the coordinates needed to draw a consistent radial gradient across
3526 < 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
3527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * to make all the slices have the same radial reference point.
3528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Array} coordinates The center reference. The format is
3530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * `[centerX, centerY, diameter]` in pixels.
3531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {SVGElement} Returns the SVGElement for chaining.
3532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { setRadialReference: function(coordinates) {
3534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var existingGradient = this.renderer.gradients[this.element.gradient];
3535  
3536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.element.radialReference = coordinates;
3537  
3538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // On redrawing objects with an existing gradient, the gradient needs
3539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // to be repositioned (#3801)
3540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (existingGradient && existingGradient.radAttr) {
3541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { existingGradient.animate(
3542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.renderer.getRadialAttr(
3543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { coordinates,
3544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { existingGradient.radAttr
3545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { )
3546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
3547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3548  
3549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
3550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3551  
3552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Move an object and its children by x and y values.
3554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} x - The x value.
3556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} y - The y value.
3557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { translate: function(x, y) {
3559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this.attr({
3560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { translateX: x,
3561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { translateY: y
3562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3564  
3565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3566 < 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
3567 < 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
3568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * the series group elements are inverted.
3569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {boolean} inverted - Whether to invert or not. An inverted shape
3571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * can be un-inverted by setting it to false.
3572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {SVGElement} Return the SVGElement for chaining.
3573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { invert: function(inverted) {
3575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var wrapper = this;
3576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.inverted = inverted;
3577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.updateTransform();
3578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return wrapper;
3579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3580  
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++) { * Update the transform attribute based on internal properties. Deals with
3583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * the custom `translateX`, `translateY`, `rotation`, `scaleX` and `scaleY`
3584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * attributes and updates the SVG `transform` attribute.
3585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @private
3586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {void}
3587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { updateTransform: function() {
3589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var wrapper = this,
3590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { translateX = wrapper.translateX || 0,
3591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { translateY = wrapper.translateY || 0,
3592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { scaleX = wrapper.scaleX,
3593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { scaleY = wrapper.scaleY,
3594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { inverted = wrapper.inverted,
3595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rotation = wrapper.rotation,
3596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element = wrapper.element,
3597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { transform;
3598  
3599 < 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
3600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (inverted) {
3601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { translateX += wrapper.width;
3602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { translateY += wrapper.height;
3603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3604  
3605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Apply translate. Nearly all transformed elements have translation, so instead
3606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // of checking for translate = 0, do it always (#1767, #1846).
3607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { transform = ['translate(' + translateX + ',' + translateY + ')'];
3608  
3609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // apply rotation
3610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (inverted) {
3611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { transform.push('rotate(90) scale(-1,1)');
3612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (rotation) { // text rotation
3613 < 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) + ')');
3614  
3615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Delete bBox memo when the rotation changes
3616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //delete wrapper.bBox;
3617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3618  
3619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // apply scale
3620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (defined(scaleX) || defined(scaleY)) {
3621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { transform.push('scale(' + pick(scaleX, 1) + ' ' + pick(scaleY, 1) + ')');
3622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3623  
3624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (transform.length) {
3625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element.setAttribute('transform', transform.join(' '));
3626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3628  
3629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Bring the element to the front.
3631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {SVGElement} Returns the SVGElement for chaining.
3633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { toFront: function() {
3635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var element = this.element;
3636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element.parentNode.appendChild(element);
3637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
3638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3639  
3640  
3641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Align the element relative to the chart or another box.
3643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * ß
3644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Object} [alignOptions] The alignment options. The function can be
3645 < 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
3646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * box has been updated.
3647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {string} [alignOptions.align=left] Horizontal alignment. Can be
3648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * one of `left`, `center` and `right`.
3649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {string} [alignOptions.verticalAlign=top] Vertical alignment. Can
3650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * be one of `top`, `middle` and `bottom`.
3651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} [alignOptions.x=0] Horizontal pixel offset from
3652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * alignment.
3653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} [alignOptions.y=0] Vertical pixel offset from alignment.
3654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Boolean} [alignByTranslate=false] Use the `transform` attribute
3655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * with translateX and translateY custom attributes to align this elements
3656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * rather than `x` and `y` attributes.
3657 < 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.
3658 < 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
3659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * example, when box is `spacingBox`, it refers to `Renderer.spacingBox`
3660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * which holds `width`, `height`, `x` and `y` properties.
3661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {SVGElement} Returns the SVGElement for chaining.
3662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { align: function(alignOptions, alignByTranslate, box) {
3664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var align,
3665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { vAlign,
3666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { x,
3667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y,
3668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attribs = {},
3669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignTo,
3670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { renderer = this.renderer,
3671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignedObjects = renderer.alignedObjects,
3672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignFactor,
3673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { vAlignFactor;
3674  
3675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // First call on instanciate
3676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (alignOptions) {
3677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.alignOptions = alignOptions;
3678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.alignByTranslate = alignByTranslate;
3679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!box || isString(box)) { // boxes other than renderer handle this internally
3680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.alignTo = alignTo = box || 'renderer';
3681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { erase(alignedObjects, this); // prevent duplicates, like legendGroup after resize
3682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignedObjects.push(this);
3683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { box = null; // reassign it below
3684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3685  
3686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // When called on resize, no arguments are supplied
3687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
3688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignOptions = this.alignOptions;
3689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignByTranslate = this.alignByTranslate;
3690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignTo = this.alignTo;
3691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3692  
3693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { box = pick(box, renderer[alignTo], renderer);
3694  
3695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Assign variables
3696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { align = alignOptions.align;
3697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { vAlign = alignOptions.verticalAlign;
3698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { x = (box.x || 0) + (alignOptions.x || 0); // default: left align
3699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y = (box.y || 0) + (alignOptions.y || 0); // default: top align
3700  
3701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Align
3702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (align === 'right') {
3703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignFactor = 1;
3704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (align === 'center') {
3705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignFactor = 2;
3706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (alignFactor) {
3708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { x += (box.width - (alignOptions.width || 0)) / alignFactor;
3709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attribs[alignByTranslate ? 'translateX' : 'x'] = Math.round(x);
3711  
3712  
3713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Vertical align
3714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (vAlign === 'bottom') {
3715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { vAlignFactor = 1;
3716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (vAlign === 'middle') {
3717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { vAlignFactor = 2;
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++) { if (vAlignFactor) {
3720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y += (box.height - (alignOptions.height || 0)) / vAlignFactor;
3721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attribs[alignByTranslate ? 'translateY' : 'y'] = Math.round(y);
3723  
3724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Animate only if already placed
3725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this[this.placed ? 'animate' : 'attr'](attribs);
3726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.placed = true;
3727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.alignAttr = attribs;
3728  
3729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
3730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3731  
3732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3733 < 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
3734 < 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,
3735 < 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
3736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * traffic. The returned bounding box includes the rotation, so for example
3737 < 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
3738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * width corresponding to the line-height.
3739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3740 < 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
3741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * box.
3742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} [rot] Override the element's rotation. This is internally
3743 < 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
3744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * would be have been if it were not rotated.
3745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {Object} The bounding box with `x`, `y`, `width` and `height`
3746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * properties.
3747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { getBBox: function(reload, rot) {
3749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var wrapper = this,
3750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { bBox, // = wrapper.bBox,
3751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { renderer = wrapper.renderer,
3752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { width,
3753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { height,
3754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rotation,
3755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rad,
3756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element = wrapper.element,
3757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles = wrapper.styles,
3758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontSize,
3759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { textStr = wrapper.textStr,
3760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { toggleTextShadowShim,
3761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cache = renderer.cache,
3762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cacheKeys = renderer.cacheKeys,
3763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cacheKey;
3764  
3765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rotation = pick(rot, wrapper.rotation);
3766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rad = rotation * deg2rad;
3767  
3768  
3769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontSize = styles && styles.fontSize;
3770  
3771  
3772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (textStr !== undefined) {
3773  
3774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cacheKey = textStr.toString();
3775  
3776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Since numbers are monospaced, and numerical labels appear a lot
3777 < 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
3778 < 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
3779 < 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).
3780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (cacheKey.indexOf('<') === -1) {
3781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cacheKey = cacheKey.replace(/[0-9]/g, '0');
3782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3783  
3784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Properties that affect bounding box
3785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cacheKey += [
3786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { '',
3787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rotation || 0,
3788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontSize,
3789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles && styles.width,
3790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles && styles.textOverflow // #5968
3791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ]
3792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { .join(',');
3793  
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 (cacheKey && !reload) {
3797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { bBox = cache[cacheKey];
3798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3799  
3800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // No cache found
3801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!bBox) {
3802  
3803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // SVG elements
3804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (element.namespaceURI === wrapper.SVG_NS || renderer.forExport) {
3805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { try { // Fails in Firefox if the container has display: none.
3806  
3807 < 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
3808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // to get the correct bounding box (#3872)
3809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { toggleTextShadowShim = this.fakeTS && function(display) {
3810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each(element.querySelectorAll('.highcharts-text-outline'), function(tspan) {
3811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tspan.style.display = display;
3812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
3814  
3815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Workaround for #3842, Firefox reporting wrong bounding box for shadows
3816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (toggleTextShadowShim) {
3817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { toggleTextShadowShim('none');
3818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3819  
3820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { bBox = element.getBBox ?
3821 < 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
3822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // of rotation (below)
3823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { extend({}, element.getBBox()) : {
3824  
3825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Legacy IE in export mode
3826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { width: element.offsetWidth,
3827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { height: element.offsetHeight
3828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
3829  
3830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // #3842
3831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (toggleTextShadowShim) {
3832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { toggleTextShadowShim('');
3833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } catch (e) {}
3835  
3836 < 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
3837 < 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.
3838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!bBox || bBox.width < 0) {
3839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { bBox = {
3840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { width: 0,
3841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { height: 0
3842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
3843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3844  
3845  
3846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // VML Renderer or useHTML within SVG
3847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
3848  
3849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { bBox = wrapper.htmlGetBBox();
3850  
3851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3852  
3853 < 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
3854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // need to compensated for rotation
3855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (renderer.isSVG) {
3856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { width = bBox.width;
3857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { height = bBox.height;
3858  
3859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Workaround for wrong bounding box in IE, Edge and Chrome on
3860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Windows. With Highcharts' default font, IE and Edge report
3861 < 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
3862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // stands uncorrected, it results in more padding added below
3863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // the text than above when adding a label border or background.
3864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Also vertical positioning is affected.
3865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // http://jsfiddle.net/highcharts/em37nvuj/
3866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // (#1101, #1505, #1669, #2568, #6213).
3867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (
3868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles &&
3869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles.fontSize === '11px' &&
3870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Math.round(height) === 17
3871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ) {
3872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { bBox.height = height = 14;
3873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3874  
3875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Adjust for rotated text
3876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (rotation) {
3877 < 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));
3878 < 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));
3879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3881  
3882 < 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
3883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // bounding box height is 0, so don't cache it (#5620).
3884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (cacheKey && bBox.height > 0) {
3885  
3886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Rotate (#4681)
3887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { while (cacheKeys.length > 250) {
3888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { delete cache[cacheKeys.shift()];
3889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3890  
3891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!cache[cacheKey]) {
3892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cacheKeys.push(cacheKey);
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++) { cache[cacheKey] = bBox;
3895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
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++) { return bBox;
3898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3899  
3900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Show the element after it has been hidden.
3902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {boolean} [inherit=false] Set the visibility attribute to
3904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * `inherit` rather than `visible`. The difference is that an element with
3905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * `visibility="visible"` will be visible even if the parent is hidden.
3906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {SVGElement} Returns the SVGElement for chaining.
3908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { show: function(inherit) {
3910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this.attr({
3911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { visibility: inherit ? 'inherit' : 'visible'
3912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3914  
3915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Hide the element, equivalent to setting the `visibility` attribute to
3917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * `hidden`.
3918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {SVGElement} Returns the SVGElement for chaining.
3920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hide: function() {
3922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this.attr({
3923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { visibility: 'hidden'
3924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3926  
3927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3928 < 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
3929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * complete. Used internally for the tooltip.
3930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} [duration=150] The fade duration in milliseconds.
3932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fadeOut: function(duration) {
3934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var elemWrapper = this;
3935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { elemWrapper.animate({
3936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { opacity: 0
3937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }, {
3938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { duration: duration || 150,
3939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { complete: function() {
3940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { elemWrapper.attr({
3941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y: -9999
3942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }); // #3088, assuming we're only using this for tooltips
3943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3946  
3947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3948 < 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.
3949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {SVGElement|SVGDOMElement} [parent] The parent item to add it to.
3951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * If undefined, the element is added to the {@link SVGRenderer.box}.
3952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {SVGElement} Returns the SVGElement for chaining.
3954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @sample highcharts/members/renderer-g - Elements added to a group
3956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { add: function(parent) {
3958  
3959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var renderer = this.renderer,
3960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element = this.element,
3961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { inserted;
3962  
3963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (parent) {
3964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.parentGroup = parent;
3965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3966  
3967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // mark as inverted
3968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.parentInverted = parent && parent.inverted;
3969  
3970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // build formatted text
3971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.textStr !== undefined) {
3972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { renderer.buildText(this);
3973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3974  
3975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Mark as added
3976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.added = true;
3977  
3978 < 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
3979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // have a z index, we need to handle it
3980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!parent || parent.handleZ || this.zIndex) {
3981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { inserted = this.zIndexSetter();
3982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3983  
3984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // If zIndex is not handled, append at the end
3985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!inserted) {
3986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (parent ? parent.element : renderer.box).appendChild(element);
3987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3988  
3989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // fire an event for internal hooks
3990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.onAdd) {
3991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.onAdd();
3992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3993  
3994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
3995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3996  
3997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Removes an element from the DOM.
3999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @private
4001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {SVGDOMElement|HTMLDOMElement} element The DOM node to remove.
4002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
4003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { safeRemoveChild: function(element) {
4004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var parentNode = element.parentNode;
4005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (parentNode) {
4006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { parentNode.removeChild(element);
4007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
4009  
4010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
4011 < 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
4012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * hooks.
4013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {void}
4015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
4016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { destroy: function() {
4017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var wrapper = this,
4018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element = wrapper.element || {},
4019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { parentToClean = wrapper.renderer.isSVG && element.nodeName === 'SPAN' && wrapper.parentGroup,
4020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { grandParent,
4021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key,
4022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { i;
4023  
4024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // remove events
4025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element.onclick = element.onmouseout = element.onmouseover = element.onmousemove = element.point = null;
4026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stop(wrapper); // stop running animations
4027  
4028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (wrapper.clipPath) {
4029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Look for existing references to this clipPath and remove them
4030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // before destroying the element (#6196).
4031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each(
4032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.element.ownerSVGElement.querySelectorAll('[clip-path]'),
4033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { function(el) {
4034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (el.getAttribute('clip-path')
4035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { .indexOf(wrapper.clipPath.element.id) > -1) {
4036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { el.removeAttribute('clip-path');
4037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
4040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.clipPath = wrapper.clipPath.destroy();
4041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4042  
4043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Destroy stops in case this is a gradient object
4044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (wrapper.stops) {
4045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { for (i = 0; i < wrapper.stops.length; i++) {
4046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.stops[i] = wrapper.stops[i].destroy();
4047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.stops = null;
4049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4050  
4051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // remove element
4052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.safeRemoveChild(element);
4053  
4054  
4055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.destroyShadows();
4056  
4057  
4058 < 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).
4059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { while (parentToClean && parentToClean.div && parentToClean.div.childNodes.length === 0) {
4060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { grandParent = parentToClean.parentGroup;
4061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.safeRemoveChild(parentToClean.div);
4062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { delete parentToClean.div;
4063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { parentToClean = grandParent;
4064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4065  
4066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // remove from alignObjects
4067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (wrapper.alignTo) {
4068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { erase(wrapper.renderer.alignedObjects, wrapper);
4069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4070  
4071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { for (key in wrapper) {
4072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { delete wrapper[key];
4073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4074  
4075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return null;
4076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
4077  
4078  
4079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
4080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @typedef {Object} ShadowOptions
4081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {string} [color=#000000] The shadow color.
4082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {number} [offsetX=1] The horizontal offset from the element.
4083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {number} [offsetY=1] The vertical offset from the element.
4084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {number} [opacity=0.15] The shadow opacity.
4085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {number} [width=3] The shadow width or distance from the
4086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * element.
4087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
4088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
4089 < 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
4090 < 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
4091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * filters.
4092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {boolean|ShadowOptions} shadowOptions The shadow options. If
4094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * `true`, the default options are applied. If `false`, the current
4095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * shadow will be removed.
4096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {SVGElement} [group] The SVG group element where the shadows will
4097 < 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
4098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * element. Internally, this is ised for pie slices, where all the
4099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * shadows are added to an element behind all the slices.
4100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {boolean} [cutOff] Used internally for column shadows.
4101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {SVGElement} Returns the SVGElement for chaining.
4103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @example
4105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * renderer.rect(10, 100, 100, 100)
4106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * .attr({ fill: 'red' })
4107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * .shadow(true);
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++) { shadow: function(shadowOptions, group, cutOff) {
4110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var shadows = [],
4111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { i,
4112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadow,
4113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element = this.element,
4114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { strokeWidth,
4115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadowWidth,
4116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadowElementOpacity,
4117  
4118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // compensate for inverted plot area
4119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { transform;
4120  
4121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!shadowOptions) {
4122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.destroyShadows();
4123  
4124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (!this.shadows) {
4125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadowWidth = pick(shadowOptions.width, 3);
4126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadowElementOpacity = (shadowOptions.opacity || 0.15) / shadowWidth;
4127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { transform = this.parentInverted ?
4128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { '(-1,-1)' :
4129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { '(' + pick(shadowOptions.offsetX, 1) + ', ' + pick(shadowOptions.offsetY, 1) + ')';
4130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { for (i = 1; i <= shadowWidth; i++) {
4131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { shadow = element.cloneNode(0);
4132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { strokeWidth = (shadowWidth * 2) + 1 - (2 * i);
4133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { attr(shadow, {
4134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { 'isShadow': 'true',
4135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { 'stroke': shadowOptions.color || '#000000',
4136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { 'stroke-opacity': shadowElementOpacity * i,
4137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { 'stroke-width': strokeWidth,
4138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { 'transform': 'translate' + transform,
4139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { 'fill': 'none'
4140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { });
4141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (cutOff) {
4142 < 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));
4143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { shadow.cutHeight = strokeWidth;
4144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4145  
4146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (group) {
4147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { group.element.appendChild(shadow);
4148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { } else {
4149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { element.parentNode.insertBefore(shadow, element);
4150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4151  
4152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { shadows.push(shadow);
4153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4154  
4155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.shadows = shadows;
4156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { return this;
4158  
4159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4160  
4161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { /**
4162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { * Destroy shadows on the element.
4163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { * @private
4164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { */
4165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { destroyShadows: function() {
4166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { each(this.shadows || [], function(shadow) {
4167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.safeRemoveChild(shadow);
4168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }, this);
4169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.shadows = undefined;
4170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4171  
4172  
4173  
4174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { xGetter: function(key) {
4175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (this.element.nodeName === 'circle') {
4176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (key === 'x') {
4177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { key = 'cx';
4178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { } else if (key === 'y') {
4179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { key = 'cy';
4180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { return this._defaultGetter(key);
4183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4184  
4185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { /**
4186 < 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
4187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { * for animation. Called internally from the {@link SVGRenderer#attr}
4188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { * function.
4189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { *
4190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { * @private
4191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { */
4192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { _defaultGetter: function(key) {
4193 < 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);
4194  
4195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (/^[\-0-9\.]+$/.test(ret)) { // is numerical
4196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { ret = parseFloat(ret);
4197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { return ret;
4199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4200  
4201  
4202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { dSetter: function(value, key, element) {
4203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (value && value.join) { // join path
4204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { value = value.join(' ');
4205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (/(NaN| {2}|^$)/.test(value)) {
4207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { value = 'M 0 0';
4208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { element.setAttribute(key, value);
4210  
4211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this[key] = value;
4212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4213  
4214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { dashstyleSetter: function(value) {
4215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { var i,
4216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { strokeWidth = this['stroke-width'];
4217  
4218 < 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
4219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { // function, we should be able to use that instead.
4220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (strokeWidth === 'inherit') {
4221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { strokeWidth = 1;
4222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { value = value && value.toLowerCase();
4224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (value) {
4225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { value = value
4226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace('shortdashdotdot', '3,1,1,1,1,1,')
4227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace('shortdashdot', '3,1,1,1')
4228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace('shortdot', '1,1,')
4229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace('shortdash', '3,1,')
4230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace('longdash', '8,3,')
4231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace(/dot/g, '1,3,')
4232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace('dash', '4,3,')
4233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace(/,$/, '')
4234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .split(','); // ending comma
4235  
4236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { i = value.length;
4237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { while (i--) {
4238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { value[i] = pInt(value[i]) * strokeWidth;
4239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { value = value.join(',')
4241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace(/NaN/g, 'none'); // #3226
4242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.element.setAttribute('stroke-dasharray', value);
4243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4245  
4246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { alignSetter: function(value) {
4247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { var convert = {
4248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { left: 'start',
4249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { center: 'middle',
4250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { right: 'end'
4251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { };
4252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.element.setAttribute('text-anchor', convert[value]);
4253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { opacitySetter: function(value, key, element) {
4255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this[key] = value;
4256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { element.setAttribute(key, value);
4257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { titleSetter: function(value) {
4259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { var titleNode = this.element.getElementsByTagName('title')[0];
4260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (!titleNode) {
4261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { titleNode = doc.createElementNS(this.SVG_NS, 'title');
4262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.element.appendChild(titleNode);
4263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4264  
4265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { // Remove text content if it exists
4266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (titleNode.firstChild) {
4267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { titleNode.removeChild(titleNode.firstChild);
4268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4269  
4270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { titleNode.appendChild(
4271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { doc.createTextNode(
4272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { (String(pick(value), '')).replace(/<[^>]*>/g, '') // #3276, #3895
4273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { )
4274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { );
4275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { textSetter: function(value) {
4277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (value !== this.textStr) {
4278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { // Delete bBox memo when the text changes
4279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { delete this.bBox;
4280  
4281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.textStr = value;
4282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (this.added) {
4283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.renderer.buildText(this);
4284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { fillSetter: function(value, key, element) {
4288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (typeof value === 'string') {
4289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { element.setAttribute(key, value);
4290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { } else if (value) {
4291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.colorGradient(value, key, element);
4292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { visibilitySetter: function(value, key, element) {
4295 < 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)
4296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (value === 'inherit') {
4297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { element.removeAttribute(key);
4298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { } else {
4299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { element.setAttribute(key, value);
4300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { zIndexSetter: function(value, key) {
4303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { var renderer = this.renderer,
4304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { parentGroup = this.parentGroup,
4305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { parentWrapper = parentGroup || renderer,
4306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { parentNode = parentWrapper.element || renderer.box,
4307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { childNodes,
4308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { otherElement,
4309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { otherZIndex,
4310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { element = this.element,
4311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { inserted,
4312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { run = this.added,
4313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { i;
4314  
4315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (defined(value)) {
4316 < 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
4317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { value = +value;
4318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (this[key] === value) { // Only update when needed (#3865)
4319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { run = false;
4320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this[key] = value;
4322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4323  
4324 < 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,
4325 < 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
4326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { // is placed on the right place in the DOM.
4327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (run) {
4328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { value = this.zIndex;
4329  
4330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (value && parentGroup) {
4331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { parentGroup.handleZ = true;
4332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4333  
4334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { childNodes = parentNode.childNodes;
4335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { for (i = 0; i < childNodes.length && !inserted; i++) {
4336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { otherElement = childNodes[i];
4337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { otherZIndex = otherElement.zIndex;
4338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { if (otherElement !== element && (
4339 < 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
4340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { pInt(otherZIndex) > value ||
4341 < 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
4342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { (!defined(value) && defined(otherZIndex)) ||
4343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { // Negative zIndex versus no zIndex:
4344 < 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 ,
4345 < 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
4346 < 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)
4347  
4348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) )) {
4349 < fullLength) {< 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);
4350 < fullLength) {< 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;
4351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4353 < fullLength) {< 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) {
4354 < fullLength) {< 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);
4355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4357 < fullLength) {< 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;
4358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) },
4359 < fullLength) {< 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) {
4360 < fullLength) {< 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);
4361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) };
4363  
4364 < fullLength) {< 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
4365 < fullLength) {< 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;
4366 < fullLength) {< 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 =
4367 < fullLength) {< 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 =
4368 < fullLength) {< 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) {
4369 < fullLength) {< 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;
4370 < fullLength) {< 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;
4371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) };
4372  
4373  
4374 < fullLength) {< 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
4375 < fullLength) {< 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.
4376 < fullLength) {< 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) {
4377 < fullLength) {< 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;
4378 < fullLength) {< 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
4379 < fullLength) {< 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']) {
4380 < fullLength) {< 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
4381 < fullLength) {< 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']);
4382 < fullLength) {< 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;
4383 < fullLength) {< 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) {
4384 < fullLength) {< 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');
4385 < fullLength) {< 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;
4386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) };
4388  
4389  
4390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4391 < fullLength) {< 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
4392 < fullLength) {< 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,
4393 < fullLength) {< 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
4394 < fullLength) {< 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.
4395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) *
4396 < fullLength) {< 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}.
4397 < fullLength) {< 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.
4398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) *
4399 < fullLength) {< 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.
4400 < fullLength) {< 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.
4401 < fullLength) {< 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.
4402 < fullLength) {< 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
4403 < fullLength) {< 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.
4404 < fullLength) {< 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
4405 < fullLength) {< 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.
4406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) *
4407 < fullLength) {< 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
4408 < fullLength) {< 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.
4409 < fullLength) {< 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);
4410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) *
4411 < fullLength) {< 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.
4412 < fullLength) {< 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.
4413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) *
4414 < fullLength) {< 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
4415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4416 < fullLength) {< 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() {
4417 < fullLength) {< 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);
4418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) };
4419 < fullLength) {< 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.prototype = {
4420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4421 < fullLength) {< 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
4422 < fullLength) {< 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.
4423 < fullLength) {< 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 {SVGElement}
4424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4425 < fullLength) {< 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,
4426 < fullLength) {< 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,
4427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4428 < fullLength) {< 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
4429 < fullLength) {< 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.
4430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4431 < fullLength) {< 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) {
4432 < fullLength) {< 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,
4433 < fullLength) {< 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,
4434 < fullLength) {< 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,
4435 < fullLength) {< 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;
4436  
4437 < fullLength) {< 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')
4438 < fullLength) {< 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({
4439 < fullLength) {< 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',
4440 < fullLength) {< 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'
4441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) })
4442  
4443 < fullLength) {< 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));
4444 < fullLength) {< 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;
4445 < fullLength) {< 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);
4446  
4447 < fullLength) {< 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)
4448 < fullLength) {< 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) {
4449 < fullLength) {< 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);
4450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4451  
4452 < fullLength) {< 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
4453 < fullLength) {< 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;
4454  
4455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4456 < fullLength) {< 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.
4457 < fullLength) {< 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}
4458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4459 < fullLength) {< 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;
4460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4461 < fullLength) {< 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.
4462 < fullLength) {< 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 {SVGElement}
4463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4464 < fullLength) {< 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;
4465 < fullLength) {< 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 = [];
4466  
4467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4468 < fullLength) {< 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.
4469 < fullLength) {< 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}
4470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4471 < fullLength) {< 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
4472 < fullLength) {< 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 ?
4473 < fullLength) {< 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
4474 < fullLength) {< 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
4475 < fullLength) {< 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
4476 < fullLength) {< 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
4477 < fullLength) {< 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)
4478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) '';
4479  
4480 < fullLength) {< 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
4481 < fullLength) {< 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();
4482 < fullLength) {< 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.10'));
4483  
4484  
4485 < fullLength) {< 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();
4486 < fullLength) {< 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;
4487 < fullLength) {< 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;
4488 < fullLength) {< 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
4489 < fullLength) {< 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
4490 < fullLength) {< 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 = [];
4491 < fullLength) {< 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;
4492  
4493 < fullLength) {< 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);
4494  
4495  
4496  
4497 < fullLength) {< 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:
4498 < fullLength) {< 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
4499 < fullLength) {< 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
4500 < fullLength) {< 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
4501 < fullLength) {< 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
4502 < fullLength) {< 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).
4503 < fullLength) {< 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;
4504 < fullLength) {< 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) {
4505 < fullLength) {< 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() {
4506 < fullLength) {< 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, {
4507 < fullLength) {< 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,
4508 < fullLength) {< 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
4509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) });
4510 < fullLength) {< 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();
4511 < fullLength) {< 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, {
4512 < fullLength) {< 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',
4513 < fullLength) {< 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'
4514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) });
4515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) };
4516  
4517 < fullLength) {< 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
4518 < fullLength) {< 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();
4519  
4520 < fullLength) {< 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
4521 < fullLength) {< 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);
4522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) },
4524  
4525  
4526  
4527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4528 < fullLength) {< 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.
4529 < fullLength) {< 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
4530 < fullLength) {< 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.
4531 < fullLength) {< 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.
4532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4533 < fullLength) {< 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) {
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) this.style = extend({
4535  
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) fontFamily: '"Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif', // default font
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) fontSize: '12px'
4538  
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) }, style);
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) return this.style;
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) * Apply the global style on the renderer, mixed with the default styles.
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) * @param {CSSObject} style - CSS to apply.
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) */
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) setStyle: function(style) {
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) this.boxWrapper.css(this.getStyle(style));
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  
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) /**
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) * Detect whether the renderer is hidden. This happens when one of the
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) * parent elements has display: none. Used internally to detect when we need
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) * to render preliminarily in another div to get the text bounding boxes
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) * right.
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) *
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) * @returns {boolean} True if it is hidden.
4558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4559 < fullLength) {< 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
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) return !this.boxWrapper.getBBox().width;
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) },
4562  
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) /**
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) * Destroys the renderer and its allocated members.
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) */
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) destroy: function() {
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) var renderer = this,
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) rendererDefs = renderer.defs;
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) renderer.box = null;
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) renderer.boxWrapper = renderer.boxWrapper.destroy();
4571  
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) // Call destroy on all gradient elements
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) destroyObjectProperties(renderer.gradients || {});
4574 < fullLength) {< 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;
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) // Defs are null in VMLRenderer
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) // Otherwise, destroy them here.
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) if (rendererDefs) {
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) renderer.defs = rendererDefs.destroy();
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) }
4581  
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) // Remove sub pixel fix handler (#982)
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) if (renderer.unSubPixelFix) {
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) renderer.unSubPixelFix();
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) }
4586  
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) renderer.alignedObjects = null;
4588  
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) return null;
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) },
4591  
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) * Create a wrapper for an SVG element. Serves as a factory for
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) * {@link SVGElement}, but this function is itself mostly called from
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) * primitive factories like {@link SVGRenderer#path}, {@link
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) * SVGRenderer#rect} or {@link SVGRenderer#text}.
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) *
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) * @param {string} nodeName - The node name, for example `rect`, `g` etc.
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) * @returns {SVGElement} The generated SVGElement.
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) */
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) createElement: function(nodeName) {
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) var wrapper = new this.Element();
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) wrapper.init(this, nodeName);
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) return wrapper;
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) },
4606  
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) /**
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) * Dummy function for plugins, called every time the renderer is updated.
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) * Prior to Highcharts 5, this was used for the canvg renderer.
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) * @function
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) */
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) draw: noop,
4613  
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) /**
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) * Get converted radial gradient attributes according to the radial
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) * reference. Used internally from the {@link SVGElement#colorGradient}
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) * function.
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) *
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) * @private
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) */
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) getRadialAttr: function(radialReference, gradAttr) {
4622 < fullLength) {< 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 {
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) cx: (radialReference[0] - radialReference[2] / 2) + gradAttr.cx * radialReference[2],
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) cy: (radialReference[1] - radialReference[2] / 2) + gradAttr.cy * radialReference[2],
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) r: gradAttr.r * radialReference[2]
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) };
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) getSpanWidth: function(wrapper, tspan) {
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) var renderer = this,
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) bBox = wrapper.getBBox(true),
4632 < fullLength) {< 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;
4633  
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) // Old IE cannot measure the actualWidth for SVG elements (#2314)
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) if (!svg && renderer.forExport) {
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) actualWidth = renderer.measureSpanWidth(tspan.firstChild.data, wrapper.styles);
4637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
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) return actualWidth;
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) },
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) applyEllipsis: function(wrapper, tspan, text, width) {
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) var renderer = this,
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) actualWidth = renderer.getSpanWidth(wrapper, tspan),
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) wasTooLong = actualWidth > width,
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) str = text,
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) currentIndex,
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) minIndex = 0,
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) maxIndex = text.length,
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) updateTSpan = function(s) {
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) tspan.removeChild(tspan.firstChild);
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) if (s) {
4652 < fullLength) {< 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));
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) };
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) if (wasTooLong) {
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) while (minIndex <= maxIndex) {
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) currentIndex = Math.ceil((minIndex + maxIndex) / 2);
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) str = text.substring(0, currentIndex) + '\u2026';
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) updateTSpan(str);
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) actualWidth = renderer.getSpanWidth(wrapper, tspan);
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) if (minIndex === maxIndex) {
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) // Complete
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) minIndex = maxIndex + 1;
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) } else if (actualWidth > width) {
4665 < fullLength) {< 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.
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) maxIndex = currentIndex - 1;
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) } else {
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) // Within width. Set min index to current.
4669 < fullLength) {< 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;
4670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
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) }
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) // If max index was 0 it means just ellipsis was also to large.
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) if (maxIndex === 0) {
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) // Remove ellipses.
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) updateTSpan('');
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) }
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) }
4678 < fullLength) {< 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;
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) },
4680  
4681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4682 < fullLength) {< 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
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) * is set on an SVGElement. The function supports a subset of HTML tags,
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) * CSS text features like `width`, `text-overflow`, `white-space`, and
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) * also attributes like `href` and `style`.
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) * @private
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) * @param {SVGElement} wrapper The parent SVGElement.
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) */
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) buildText: function(wrapper) {
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) var textNode = wrapper.element,
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) renderer = this,
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) forExport = renderer.forExport,
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) textStr = pick(wrapper.textStr, '').toString(),
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) hasMarkup = textStr.indexOf('<') !== -1,
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)<') !== -1, lines,
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)<') !== -1, childNodes = textNode.childNodes,
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)<') !== -1, clsRegex,
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)<') !== -1, styleRegex,
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)<') !== -1, hrefRegex,
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)<') !== -1, wasTooLong,
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)<') !== -1, parentX = attr(textNode, 'x'),
4702 < fullLength) {< len; 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,
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)<') !== -1, width = wrapper.textWidth,
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)<') !== -1, textLineHeight = textStyles && textStyles.lineHeight,
4705 < fullLength) {< len; 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,
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)<') !== -1, ellipsis = textStyles && textStyles.textOverflow === 'ellipsis',
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)<') !== -1, noWrap = textStyles && textStyles.whiteSpace === 'nowrap',
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)<') !== -1, fontSize = textStyles && textStyles.fontSize,
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)<') !== -1, textCache,
4710 < fullLength) {< len; 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,
4711 < fullLength) {< len; 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,
4712 < fullLength) {< len; 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,
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)<') !== -1, getLineHeight = function(tspan) {
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)<') !== -1, var fontSizeStyle;
4715  
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)<') !== -1, fontSizeStyle = /(px|em)$/.test(tspan && tspan.style.fontSize) ?
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)<') !== -1, tspan.style.fontSize :
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)<') !== -1, (fontSize || renderer.style.fontSize || 12);
4719  
4720  
4721 < fullLength) {< len; 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 ?
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)<') !== -1, pInt(textLineHeight) :
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)<') !== -1, renderer.fontMetrics(
4724 < fullLength) {< len; 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,
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)<') !== -1, // Get the computed size from parent if not explicit
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)<') !== -1, tspan.getAttribute('style') ? tspan : textNode
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)<') !== -1, ).h;
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)<') !== -1, },
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)<') !== -1, unescapeAngleBrackets = function(inputStr) {
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)<') !== -1, return inputStr.replace(/&lt;/g, '<').replace(/&gt;/g, '>');
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)<') !== -1,<').replace(/ };
4732  
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)<') !== -1,<').replace(/ // The buildText code is quite heavy, so if we're not changing something
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)<') !== -1,<').replace(/ // that affects the text, skip it (#6113).
4735 < fullLength) {< len; i++) {<= 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 = [
4736 < fullLength) {< len; i++) {<= 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,
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)<') !== -1,<').replace(/ ellipsis,
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)<') !== -1,<').replace(/ noWrap,
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)<') !== -1,<').replace(/ textLineHeight,
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)<') !== -1,<').replace(/ textOutline,
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)<') !== -1,<').replace(/ fontSize,
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)<') !== -1,<').replace(/ width
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)<') !== -1,<').replace(/ ].join(',');
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)<') !== -1,<').replace(/ if (textCache === wrapper.textCache) {
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)<') !== -1,<').replace(/ return;
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)<') !== -1,<').replace(/ }
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)<') !== -1,<').replace(/ wrapper.textCache = textCache;
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)<') !== -1,<').replace(/ /// remove old text
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)<') !== -1,<').replace(/ while (i--) {
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)<') !== -1,<').replace(/ textNode.removeChild(childNodes[i]);
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)<') !== -1,<').replace(/ }
4753  
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)<') !== -1,<').replace(/ // Skip tspans, add text directly to text node. The forceTSpan is a hook
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)<') !== -1,<').replace(/ // used in text outline hack.
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)<') !== -1,<').replace(/ if (!hasMarkup && !textOutline && !ellipsis && !width && textStr.indexOf(' ') === -1) {
4757 < fullLength) {< len; i++) {<= 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)));
4758  
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)<') !== -1,<').replace(/ // Complex strings, add more logic
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)<') !== -1,<').replace(/ } else {
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)<') !== -1,<').replace(/ clsRegex = /<.*class="([^"]+)".*>/;
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)<') !== -1,<').replace(/<.*class="([^"]+)".*> styleRegex = /<.*style="([^"]+)".*>/;
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*> hrefRegex = /<.*href="(http[^"]+)".*>/;
4765  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*> if (tempParent) {
4767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*> tempParent.appendChild(textNode); // attach it to the DOM to read offset width
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*> }
4769  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*> if (hasMarkup) {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*> lines = textStr
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*> .replace(/<(b|strong)>/g, '<span style="font-weight:bold">')
4774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)> .replace(/<(i|em)>/g, '<span style="font-style:italic">')
4775  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)> .replace(/g, '<span')
4777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)> .replace(/<\/(b|strong|i|em|a)>/g, '</span>')
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> .split(//g);
4779  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> } else {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> lines = [textStr];
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> }
4783  
4784  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> // Trim empty lines (#5261)
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> lines = grep(lines, function(line) {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> return line !== '';
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> });
4789  
4790  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> // build the lines
4792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> each(lines, function buildTextLines(line, lineNo) {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> var spans,
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> spanNo = 0;
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> line = line
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> .replace(/^\s+|\s+$/g, '') // Trim to prevent useless/costly process on the spaces (#5258)
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> .replace(/g, '|||<span')
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> .replace(/<\/span>/g, '</span>|||');
4799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> spans = line.split('|||');
4800  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> each(spans, function buildTextSpans(span) {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> if (span !== '' || spans.length === 1) {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> var attributes = {},
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> tspan = doc.createElementNS(renderer.SVG_NS, 'tspan'),
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> spanCls,
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> spanStyle; // #390
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> if (clsRegex.test(span)) {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> spanCls = span.match(clsRegex)[1];
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> attr(tspan, 'class', spanCls);
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> }
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> if (styleRegex.test(span)) {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> spanStyle = span.match(styleRegex)[1].replace(/(;| |^)color([ :])/, '$1fill$2');
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> attr(tspan, 'style', spanStyle);
4814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> }
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> if (hrefRegex.test(span) && !forExport) { // Not for export - #1529
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> attr(tspan, 'onclick', 'location.href=\"' + span.match(hrefRegex)[1] + '\"');
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> css(tspan, {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> cursor: 'pointer'
4819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> });
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> }
4821  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> span = unescapeAngleBrackets(span.replace(/<(.|\n)*?>/g, '') || ' ');
4823  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Nested tags aren't supported, and cause crash in Safari (#1596)
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (span !== ' ') {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // add the text node
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> tspan.appendChild(doc.createTextNode(span));
4829  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (!spanNo) { // first span in a line, align it to the left
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (lineNo && parentX !== null) {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attributes.x = parentX;
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attributes.dx = 0; // #16
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
4837  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // add attributes
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attr(tspan, attributes);
4840  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Append it
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> textNode.appendChild(tspan);
4843  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // first span on subsequent line, add the line height
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (!spanNo && isSubsequentLine) {
4846  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // allow getting the right offset height in exporting in IE
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (!svg && forExport) {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> css(tspan, {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> display: 'block'
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
4853  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Set the line height based on the font size of either
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // the text element or the tspan element
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attr(
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> tspan,
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> 'dy',
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> getLineHeight(tspan)
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> );
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
4862  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /*if (width) {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> renderer.breakText(wrapper, width);
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }*/
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Check width and apply soft breaks or ellipsis
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (width) {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var words = span.replace(/([^\^])-/g, '$1- ').split(' '), // #1273
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> hasWhiteSpace = spans.length > 1 || lineNo || (words.length > 1 && !noWrap),
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> tooLong,
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rest = [],
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> actualWidth,
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> dy = getLineHeight(tspan),
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rotation = wrapper.rotation;
4876  
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (ellipsis) {
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wasTooLong = renderer.applyEllipsis(wrapper, tspan, span, width);
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)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
4880  
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> while (!ellipsis && hasWhiteSpace && (words.length || rest.length)) {
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wrapper.rotation = 0; // discard rotation when computing box
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> actualWidth = renderer.getSpanWidth(wrapper, tspan);
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> tooLong = actualWidth > width;
4885  
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // For ellipsis, do a binary search for the correct string length
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (wasTooLong === undefined) {
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wasTooLong = tooLong; // First time
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
4890  
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Looping down, this is the first word sequence that is not too long,
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // so we can move on to build the next line.
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (!tooLong || words.length === 1) {
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> words = rest;
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rest = [];
4896  
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (words.length && !noWrap) {
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> tspan = doc.createElementNS(SVG_NS, 'tspan');
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attr(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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> dy: dy,
4901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> x: parentX
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (spanStyle) { // #390
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attr(tspan, 'style', spanStyle);
4905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
4906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> textNode.appendChild(tspan);
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (actualWidth > width) { // a single word is pressing it out
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> width = actualWidth;
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else { // append to existing line tspan
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> tspan.removeChild(tspan.firstChild);
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rest.unshift(words.pop());
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (words.length) {
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,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> tspan.appendChild(doc.createTextNode(words.join(' ').replace(/- /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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
4918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wrapper.rotation = rotation;
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
4921  
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> spanNo++;
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // To avoid beginning lines that doesn't add to the textNode (#6144)
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> isSubsequentLine = isSubsequentLine || textNode.childNodes.length;
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
4929  
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (wasTooLong) {
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wrapper.attr('title', wrapper.textStr);
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (tempParent) {
4934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> tempParent.removeChild(textNode); // attach it to the DOM to read offset width
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
4936  
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Apply the text outline
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (textOutline && wrapper.applyTextOutline) {
4939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wrapper.applyTextOutline(textOutline);
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
4943  
4944  
4945  
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /*
4947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> breakText: function (wrapper, width) {
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(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var bBox = wrapper.getBBox(),
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="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> node = wrapper.element,
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="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> textLength = node.textContent.length,
4951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> increment = 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> finalPos;
4954  
4955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (bBox.width > width) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> while (finalPos === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> textLength = node.getSubStringLength(0, pos);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (textLength <= width) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (increment === -1) {
4961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> finalPos = pos;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> increment = 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
4965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (increment === 1) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> finalPos = pos - 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else {
4969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> increment = -1;
4970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> pos += increment;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
4975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> console.log('width', width, 'stringWidth', node.getSubStringLength(0, finalPos))
4976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
4978  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Returns white for dark colors and black for bright colors.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {ColorString} rgba - The color to get the contrast for.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {string} The contrast color, either `#000000` or `#FFFFFF`.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> getContrast: function(rgba) {
4986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rgba = color(rgba).rgba;
4987  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // The threshold may be discussed. Here's a proposal for adding
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // different weight to the color channels (#6216)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /*
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rgba[0] *= 1; // red
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rgba[1] *= 1.2; // green
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rgba[2] *= 0.7; // blue
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
4995  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return rgba[0] + rgba[1] + rgba[2] > 2 * 255 ? '#000000' : '#FFFFFF';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
4998  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Create a button with preset states.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {string} text - The text or HTML to draw.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} x - The x position of the button's left side.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} y - The y position of the button's top side.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {Function} callback - The function to execute on button click or
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * touch.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {SVGAttributes} [normalState] - SVG attributes for the normal
5007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * state.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {SVGAttributes} [hoverState] - SVG attributes for the hover state.
5009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {SVGAttributes} [pressedState] - SVG attributes for the pressed
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * state.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {SVGAttributes} [disabledState] - SVG attributes for the disabled
5012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * state.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {Symbol} [shape=rect] - The shape type.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {SVGRenderer} The button element.
5015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> button: function(text, x, y, callback, normalState, hoverState, pressedState, disabledState, shape) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var label = this.label(text, x, y, shape, null, null, null, null, 'button'),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> curState = 0;
5019  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Default, non-stylable attributes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> label.attr(merge({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> 'padding': 8,
5023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> 'r': 2
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }, normalState));
5025  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Presentational
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var normalStyle,
5029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> hoverStyle,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> pressedStyle,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> disabledStyle;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Normal state - prepare the attributes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> normalState = merge({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> fill: '#f7f7f7',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> stroke: '#cccccc',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> 'stroke-width': 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> style: {
5039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> color: '#333333',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> cursor: 'pointer',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> fontWeight: 'normal'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }, normalState);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> normalStyle = normalState.style;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> delete normalState.style;
5046  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Hover state
5048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> hoverState = merge(normalState, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> fill: '#e6e6e6'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }, hoverState);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> hoverStyle = hoverState.style;
5052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> delete hoverState.style;
5053  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Pressed state
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> pressedState = merge(normalState, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> fill: '#e6ebf5',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> style: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> color: '#000000',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> fontWeight: 'bold'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }, pressedState);
5062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> pressedStyle = pressedState.style;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> delete pressedState.style;
5064  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Disabled state
5066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> disabledState = merge(normalState, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> style: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> color: '#cccccc'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }, disabledState);
5071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> disabledStyle = disabledState.style;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> delete disabledState.style;
5073  
5074  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Add the events. IE9 and IE10 need mouseover and mouseout to funciton (#667).
5076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> addEvent(label.element, isMS ? 'mouseover' : 'mouseenter', function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (curState !== 3) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> label.setState(1);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> addEvent(label.element, isMS ? 'mouseout' : 'mouseleave', function() {
5082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (curState !== 3) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> label.setState(curState);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5086  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> label.setState = function(state) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Hover state is temporary, don't record it
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (state !== 1) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> label.state = curState = state;
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="(http[^"]+)".*><(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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Update visuals
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> label.removeClass(/highcharts-button-(normal|hover|pressed|disabled)/)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> .addClass('highcharts-button-' + ['normal', 'hover', 'pressed', 'disabled'][state || 0]);
5095  
5096  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> label.attr([normalState, hoverState, pressedState, disabledState][state || 0])
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> .css([normalStyle, hoverStyle, pressedStyle, disabledStyle][state || 0]);
5099  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> };
5101  
5102  
5103  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Presentational attributes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> .attr(normalState)
5107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> .css(extend({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> cursor: 'default'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }, normalStyle));
5110  
5111  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> .on('click', function(e) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (curState !== 3) {
5115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> callback.call(label, e);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5119  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Make a straight line crisper by not spilling out to neighbour pixels.
5122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {Array} points - The original points on the format `['M', 0, 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * 'L', 100, 0]`.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} width - The width of the line.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {Array} The original points array, but modified to render
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * crisply.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> crispLine: function(points, width) {
5130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // normalize to a crisp line
5131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (points[1] === points[4]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Substract due to #1129. Now bottom and left axis gridlines behave the same.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> points[1] = points[4] = Math.round(points[1]) - (width % 2 / 2);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (points[2] === points[5]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> points[2] = points[5] = Math.round(points[2]) + (width % 2 / 2);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return points;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5140  
5141  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw a path, wraps the SVG `path` element.
5144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {Array} [path] An SVG path definition in array form.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @example
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * var path = renderer.path(['M', 10, 10, 'L', 30, 30, 'z'])
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * .attr({ stroke: '#ff00ff' })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * .add();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {SVGElement} The generated wrapper element.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw a path, wraps the SVG `path` element.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {SVGAttributes} [attribs] The initial attributes.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {SVGElement} The generated wrapper element.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> path: function(path) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var attribs = {
5161  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> fill: 'none'
5163  
5164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (isArray(path)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attribs.d = path;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else if (isObject(path)) { // attributes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> extend(attribs, path);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return this.createElement('path').attr(attribs);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5172  
5173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw a circle, wraps the SVG `circle` element.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [x] The center x position.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [y] The center y position.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [r] The radius.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {SVGElement} The generated wrapper element.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw a circle, wraps the SVG `circle` element.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {SVGAttributes} [attribs] The initial attributes.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {SVGElement} The generated wrapper element.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> circle: function(x, y, r) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var attribs = isObject(x) ? x : {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> x: x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> y: y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> r: r
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wrapper = this.createElement('circle');
5194  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Setting x or y translates to cx and cy
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wrapper.xSetter = wrapper.ySetter = function(value, key, element) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> element.setAttribute('c' + key, value);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> };
5199  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return wrapper.attr(attribs);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5202  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw and return an arc.
5205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [x=0] Center X position.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [y=0] Center Y position.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [r=0] The outer radius of the arc.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [innerR=0] Inner radius like used in donut charts.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [start=0] The starting angle of the arc in radians, where
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * 0 is to the right and `-Math.PI/2` is up.
5211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(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
5212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * is to the right and `-Math.PI/2` is up.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {SVGElement} The generated wrapper element.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw and return an arc. Overloaded function that takes arguments object.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {SVGAttributes} attribs Initial SVG attributes.
5218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {SVGElement} The generated wrapper element.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> arc: function(x, y, r, innerR, start, end) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var arc,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> options;
5223  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (isObject(x)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> options = x;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> y = options.y;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> r = options.r;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> innerR = options.innerR;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> start = options.start;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> end = options.end;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> x = options.x;
5232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> options = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> innerR: innerR,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> start: start,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> end: end
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Arcs are defined as symbols for the ability to set
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // attributes in attr and animate
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> arc = this.symbol('arc', x, y, r, r, options);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> arc.r = r; // #959
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return arc;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5246  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw and return a rectangle.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [x] Left position.
5250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [y] Top position.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [width] Width of the rectangle.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [height] Height of the rectangle.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [r] Border corner radius.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [strokeWidth] A stroke width can be supplied to allow
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * crisp drawing.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {SVGElement} The generated wrapper element.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw and return a rectangle.
5260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {SVGAttributes} [attributes] General SVG attributes for the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * rectangle.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {SVGElement} The generated wrapper element.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rect: function(x, y, width, height, r, strokeWidth) {
5265  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> r = isObject(x) ? x.r : r;
5267  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var wrapper = this.createElement('rect'),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attribs = isObject(x) ? x : x === undefined ? {} : {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> x: x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> y: y,
5272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> width: Math.max(width, 0),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> height: Math.max(height, 0)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> };
5275  
5276  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (strokeWidth !== undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attribs.strokeWidth = strokeWidth;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attribs = wrapper.crisp(attribs);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attribs.fill = 'none';
5282  
5283  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (r) {
5285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attribs.r = r;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5287  
5288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wrapper.rSetter = function(value, key, element) {
5289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attr(element, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rx: value,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> ry: value
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> };
5294  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return wrapper.attr(attribs);
5296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Resize the {@link SVGRenderer#box} and re-align all aligned child
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * elements.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} width The new pixel width.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} height The new pixel height.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {boolean} animate Whether to animate.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> setSize: function(width, height, animate) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var renderer = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> alignedObjects = renderer.alignedObjects,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> i = alignedObjects.length;
5309  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> renderer.width = width;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> renderer.height = height;
5312  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> renderer.boxWrapper.animate({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> width: width,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> height: height
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> step: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> this.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> viewBox: '0 0 ' + this.attr('width') + ' ' + this.attr('height')
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="(http[^"]+)".*><(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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> duration: pick(animate, true) ? undefined : 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5324  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> while (i--) {
5326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> alignedObjects[i].align();
5327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5329  
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="(http[^"]+)".*><(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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Create and return an svg group element.
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="(http[^"]+)".*><(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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {string} [name] The group will be given a class name of
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * `highcharts-{name}`. This can be used for styling and scripting.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {SVGElement} The generated wrapper element.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> g: function(name) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var elem = this.createElement('g');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return name ? elem.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> 'class': 'highcharts-' + name
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }) : elem;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5343  
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="(http[^"]+)".*><(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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Display an image.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {string} src The image source.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [x] The X position.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [y] The Y position.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [width] The image width. If omitted, it defaults to the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * image file width.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [height] The image height. If omitted it defaults to the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * image file height.
5353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {SVGElement} The generated wrapper element.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> image: function(src, x, y, width, height) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var attribs = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> preserveAspectRatio: 'none'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> elemWrapper;
5360  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // optional properties
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (arguments.length > 1) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> extend(attribs, {
5364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> x: x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> y: y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> width: width,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> height: height
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5370  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> elemWrapper = this.createElement('image').attr(attribs);
5372  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // set the href in the xlink namespace
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (elemWrapper.element.setAttributeNS) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> elemWrapper.element.setAttributeNS('http://www.w3.org/1999/xlink',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> 'href', src);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // could be exporting in IE
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="(http[^"]+)".*><(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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> elemWrapper.element.setAttribute('hc-svg-href', src);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return elemWrapper;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5384  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw a symbol out of pre-defined shape paths from {@SVGRenderer#symbols}.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * It is used in Highcharts for point makers, which cake a `symbol` option,
5388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * and label and button backgrounds like in the tooltip and stock flags.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {Symbol} symbol - The symbol name.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} x - The X coordinate for the top left position.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} y - The Y coordinate for the top left position.
5393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} width - The pixel width.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} height - The pixel height.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {Object} [options] - Additional options, depending on the actual
5396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * symbol drawn.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [options.anchorX] - The anchor X position for the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * `callout` symbol. This is where the chevron points to.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [options.anchorY] - The anchor Y position for the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * `callout` symbol. This is where the chevron points to.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [options.end] - The end angle of an `arc` symbol.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {boolean} [options.open] - Whether to draw `arc` symbol open or
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * closed.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [options.r] - The radius of an `arc` symbol, or the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * border radius for the `callout` symbol.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [options.start] - The start angle of an `arc` symbol.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> symbol: function(symbol, x, y, width, height, options) {
5409  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var ren = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj,
5412  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // get the symbol definition function
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> symbolFn = this.symbols[symbol],
5415  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // check if there's a path defined for this symbol
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> path = defined(x) && symbolFn && this.symbols[symbol](
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> Math.round(x),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> Math.round(y),
5420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> width,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> height,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> ),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> imageRegex = /^url\((.*?)\)$/,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> imageSrc,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> centerImage;
5427  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (symbolFn) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj = this.path(path);
5430  
5431  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj.attr('fill', 'none');
5433  
5434  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // expando properties for use in animate and attr
5436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> extend(obj, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> symbolName: symbol,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> x: x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> y: y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> width: width,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> height: height
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> extend(obj, options);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5446  
5447  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // image symbols
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else if (imageRegex.test(symbol)) {
5450  
5451  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> imageSrc = symbol.match(imageRegex)[1];
5453  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Create the image synchronously, add attribs async
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj = this.image(imageSrc);
5456  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // The image width is not always the same as the symbol width. The
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // image may be centered within the symbol, as is the case when
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // image shapes are used as label backgrounds, for example in flags.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj.imgwidth = pick(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> symbolSizes[imageSrc] && symbolSizes[imageSrc].width,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> options && options.width
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj.imgheight = pick(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> symbolSizes[imageSrc] && symbolSizes[imageSrc].height,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> options && options.height
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> );
5468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Set the size and position
5470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> centerImage = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> width: obj.width,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> height: obj.height
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> };
5477  
5478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Width and height setters that take both the image's physical size
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * and the label size into consideration, and translates the image
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * to center within the label.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> each(['width', 'height'], function(key) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj[key + 'Setter'] = function(value, key) {
5485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var attribs = {},
5486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> imgSize = this['img' + key],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> trans = key === 'width' ? 'translateX' : 'translateY';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> this[key] = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (defined(imgSize)) {
5490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (this.element) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> this.element.setAttribute(key, imgSize);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (!this.alignByTranslate) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attribs[trans] = ((this[key] || 0) - imgSize) / 2;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> this.attr(attribs);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5500  
5501  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (defined(x)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> x: x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> y: y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
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="(http[^"]+)".*><(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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj.isImg = true;
5509  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (defined(obj.imgwidth) && defined(obj.imgheight)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> centerImage();
5512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else {
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="(http[^"]+)".*><(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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj.attr({
5515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> width: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> height: 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5518  
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="(http[^"]+)".*><(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,
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="(http[^"]+)".*><(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).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, createElement('img', {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, onload: function() {
5523  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, var chart = charts[ren.chartIndex];
5525  
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="(http[^"]+)".*><(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
5527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, // part of the DOM (#2854).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, if (this.width === 0) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, css(this, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, position: 'absolute',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, top: '-999em'
5532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, doc.body.appendChild(this);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, }
5535  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, // Center the image
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, symbolSizes[imageSrc] = { // Cache for next
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, width: this.width,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, height: this.height
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, obj.imgwidth = this.width;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, obj.imgheight = this.height;
5543  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, if (obj.element) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, centerImage();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, }
5547  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, // Clean up after #2854 workaround.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, if (this.parentNode) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, this.parentNode.removeChild(this);
5551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, }
5552  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, // Fire the load event when all external images are loaded
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, ren.imgCount--;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, if (!ren.imgCount && chart && chart.onload) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, chart.onload();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, src: imageSrc
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, this.imgCount++;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, }
5564  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, return obj;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, },
5567  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, * @typedef {string} Symbol
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, * Can be one of `arc`, `callout`, `circle`, `diamond`, `square`,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, * `triangle`, `triangle-down`. Symbols are used internally for point
5573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, * markers, button and label borders and backgrounds, or custom shapes.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, * Extendable by adding to {@link SVGRenderer#symbols}.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, * An extendable collection of functions for defining symbol paths.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, symbols: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'circle': function(x, y, w, h) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, // Return a full arc
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="(http[^"]+)".*><(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, {
5583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, start: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, end: Math.PI * 2,
5585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, open: false
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, },
5588  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'square': function(x, y, w, h) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, return [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'M', x, y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'L', x + w, y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, x + w, y + h,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, x, y + h,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'Z'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, ];
5597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, },
5598  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'triangle': function(x, y, w, h) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, return [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'M', x + w / 2, y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'L', x + w, y + h,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, x, y + h,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'Z'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, ];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, },
5607  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'triangle-down': function(x, y, w, h) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, return [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'M', x, y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'L', x + w, y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, x + w / 2, y + h,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'Z'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, ];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'diamond': function(x, y, w, h) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, return [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'M', x + w / 2, y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'L', x + w, y + h / 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, x + w / 2, y + h,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, x, y + h / 2,
5622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'Z'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, ];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'arc': function(x, y, w, h, options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, var start = options.start,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, rx = options.r || w,
5628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, ry = options.r || h || w,
5629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, innerRadius = options.innerR,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, open = options.open,
5632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, cosStart = Math.cos(start),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, sinStart = Math.sin(start),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, cosEnd = Math.cos(end),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, sinEnd = Math.sin(end),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, longArc = options.end - start < Math.PI ? 0 : 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, arc;
5638  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, arc = [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'M',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, x + rx * cosStart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, y + ry * sinStart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'A', // arcTo
5644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, rx, // x radius
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, ry, // y radius
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 0, // slanting
5647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, longArc, // long or short arc
5648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 1, // clockwise
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, x + rx * cosEnd,
5650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, y + ry * sinEnd
5651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, ];
5652  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, if (defined(innerRadius)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, arc.push(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, open ? 'M' : 'L',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, x + innerRadius * cosEnd,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, y + innerRadius * sinEnd,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'A', // arcTo
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, innerRadius, // x radius
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, innerRadius, // y radius
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 0, // slanting
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, longArc, // long or short arc
5663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 0, // clockwise
5664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, x + innerRadius * cosStart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, y + innerRadius * sinStart
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, );
5667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, arc.push(open ? '' : 'Z'); // close
5670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, return arc;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, },
5672  
5673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, /**
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="(http[^"]+)".*><(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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, callout: function(x, y, w, h, options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, var arrowLength = 6,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, halfDistance = 6,
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="(http[^"]+)".*><(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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, safeDistance = r + halfDistance,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, anchorX = options && options.anchorX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, anchorY = options && options.anchorY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, path;
5684  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, path = [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'M', x + r, y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'L', x + w - r, y, // top side
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="(http[^"]+)".*><(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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'L', x + w, y + h - r, // right side
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="(http[^"]+)".*><(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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'L', x + r, y + h, // bottom side
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="(http[^"]+)".*><(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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'L', x, y + r, // left side
5694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, ];
5696  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, // Anchor on right side
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, if (anchorX && anchorX > w) {
5699  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, // Chevron
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, if (anchorY > y + safeDistance && anchorY < y + h - safeDistance) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { path.splice(13, 3,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { 'L', x + w, anchorY - halfDistance,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { x + w + arrowLength, anchorY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { x + w, anchorY + halfDistance,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { x + w, y + h - r
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { );
5708  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { // Simple connector
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { path.splice(13, 3,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { 'L', x + w, h / 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { anchorX, anchorY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { x + w, h / 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { x + w, y + h - r
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { );
5717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { // Anchor on left side
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { } else if (anchorX && anchorX < 0) {
5721  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) { // Chevron
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="(http[^"]+)".*><(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) {
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="(http[^"]+)".*><(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,
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="(http[^"]+)".*><(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,
5726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(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,
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="(http[^"]+)".*><(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,
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="(http[^"]+)".*><(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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { );
5730  
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="(http[^"]+)".*><(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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { } else {
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="(http[^"]+)".*><(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,
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="(http[^"]+)".*><(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,
5735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(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,
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="(http[^"]+)".*><(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,
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="(http[^"]+)".*><(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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { }
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="(http[^"]+)".*><(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
5742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(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,
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="(http[^"]+)".*><(b|strong)><(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,
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="(http[^"]+)".*><(b|strong)><(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,
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="(http[^"]+)".*><(b|strong)><(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,
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="(http[^"]+)".*><(b|strong)><(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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { / );
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="(http[^"]+)".*><(b|strong)><(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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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,
5752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
5756  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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 {SVGElement} ClipRect - A clipping rectangle that can be applied
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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
5764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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)
5769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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' })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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
5781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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.
5784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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(),
5788  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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);
5792  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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;
5797  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
5800  
5801  
5802  
5803  
5804  
5805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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 text to the SVG object
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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 Left position
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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 Top position
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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 Use HTML to render the text
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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) {
5813  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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
5815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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 = {};
5819  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
5823  
5824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
5831  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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);
5834  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
5841  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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'),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|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++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { tspan = tspans[i];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // If the x values are equal, the tspan represents a linebreak
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (tspan.getAttribute(key) === parentVal) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { tspan.setAttribute(key, value);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
5855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { element.setAttribute(key, value);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
5858  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return wrapper;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
5861  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Utility to return the baseline offset and total line height from the font
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * size.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {?string} fontSize The current font size to inspect. If not given,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * the font size will be found from the DOM element.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {SVGElement|SVGDOMElement} [elem] The element to inspect for a
5869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * current font size.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @returns {Object} An object containing `h`: the line height, `b`: the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * baseline relative to the top of the box, and `f`: the font size.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { fontMetrics: function(fontSize, elem) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var lineHeight,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { baseline;
5876  
5877  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { fontSize = fontSize ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // When the elem is a DOM element (#5932)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { (elem && elem.style && elem.style.fontSize) ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Fall back on the renderer style default
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { (this.style && this.style.fontSize);
5883  
5884  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Handle different units
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (/px/.test(fontSize)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { fontSize = pInt(fontSize);
5889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { } else if (/em/.test(fontSize)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // The em unit depends on parent items
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { fontSize = parseFloat(fontSize) *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { (elem ? this.fontMetrics(null, elem.parentNode).f : 16);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { fontSize = 12;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
5896  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Empirical values found by comparing font size and bounding box
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // height. Applies to the default font family.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // http://jsfiddle.net/highcharts/7xvn7/
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { lineHeight = fontSize < 24 ? fontSize + 3 : Math.round(fontSize * 1.2);
5901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { baseline = Math.round(lineHeight * 0.8);
5902  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { h: lineHeight,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { b: baseline,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { f: fontSize
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
5909  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Correct X and Y positioning of a label for rotation (#1764)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
5913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { rotCorr: function(baseline, rotation, alterY) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var y = baseline;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (rotation && alterY) {
5916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { y = Math.max(y * Math.cos(rotation * deg2rad), 4);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { x: (-baseline / 3) * Math.sin(rotation * deg2rad),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { y: y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
5923  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
5925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Add a label, a text item that can hold a colored or gradient background
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * as well as a border and shadow. Supported custom attributes include
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * `padding`.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {string} str
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {number} x
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {number} y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {String} shape
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {number} anchorX In case the shape has a pointer, like a flag, this is the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * coordinates it should be pinned to
5935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {number} anchorY
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {Boolean} baseline Whether to position the label relative to the text baseline,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * like renderer.text, or to the upper border of the rectangle.
5938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {String} className Class name for the group
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { label: function(str, x, y, shape, anchorX, anchorY, useHTML, baseline, className) {
5941  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var renderer = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper = renderer.g(className !== 'button' && 'label'),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { text = wrapper.text = renderer.text('', 0, 0, useHTML)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { .attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { zIndex: 1
5947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { box,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { bBox,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { alignFactor = 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { padding = 3,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { paddingLeft = 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { width,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { height,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapperX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapperY,
5957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { textAlign,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { deferredAttr = {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { strokeWidth,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { baselineOffset,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { hasBGImage = /^url\((.*?)\)$/.test(shape),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { needsBox = hasBGImage,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { getCrispAdjust,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { updateBoxSize,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { updateTextPadding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { boxAttr;
5967  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (className) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.addClass('highcharts-' + className);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
5971  
5972  
5973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { needsBox = hasBGImage;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { getCrispAdjust = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return (strokeWidth || 0) % 2 / 2;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
5977  
5978  
5979  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * This function runs after the label is added to the DOM (when the bounding box is
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * available), and after the text of the label is updated to detect the new bounding
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * box and reflect it in the border box.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { updateBoxSize = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var style = text.element.style,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { crispAdjust,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { attribs = {};
5989  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { bBox = (width === undefined || height === undefined || textAlign) && defined(text.textStr) &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { text.getBBox(); //#3295 && 3514 box failure when string equals 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.width = (width || bBox.width || 0) + 2 * padding + paddingLeft;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.height = (height || bBox.height || 0) + 2 * padding;
5994  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Update the label-scoped y offset
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { baselineOffset = padding + renderer.fontMetrics(style && style.fontSize, text).b;
5997  
5998  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (needsBox) {
6000  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Create the border box if it is not already present
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (!box) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.box = box = renderer.symbols[shape] || hasBGImage ? // Symbol definition exists (#5324)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { renderer.symbol(shape) :
6005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { renderer.rect();
6006  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { box.addClass(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { (className === 'button' ? '' : 'highcharts-label-box') + // Don't use label className for buttons
6009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { (className ? ' highcharts-' + className + '-box' : '')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { );
6011  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { box.add(wrapper);
6013  
6014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { crispAdjust = getCrispAdjust();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { attribs.x = crispAdjust;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { attribs.y = (baseline ? -baselineOffset : 0) + crispAdjust;
6017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6018  
6019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Apply the box attributes
6020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { attribs.width = Math.round(wrapper.width);
6021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { attribs.height = Math.round(wrapper.height);
6022  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { box.attr(extend(attribs, deferredAttr));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { deferredAttr = {};
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
6027  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * This function runs after setting text or padding, but only if padding is changed
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { updateTextPadding = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var textX = paddingLeft + padding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { textY;
6034  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // determin y based on the baseline
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { textY = baseline ? 0 : baselineOffset;
6037  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // compensate for alignment
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (defined(width) && bBox && (textAlign === 'center' || textAlign === 'right')) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { textX += {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { center: 0.5,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { right: 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }[textAlign] * (width - bBox.width);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6045  
6046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // update if anything changed
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (textX !== text.x || textY !== text.y) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { text.attr('x', textX);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (textY !== undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { text.attr('y', textY);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6053  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // record current values
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { text.x = textX;
6056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { text.y = textY;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
6058  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Set a box attribute, or defer it if the box is not yet created
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {Object} key
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {Object} value
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
6064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { boxAttr = function(key, value) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (box) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { box.attr(key, value);
6067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { deferredAttr[key] = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
6071  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * After the text element is added, get the desired size of the border box
6074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * and add it before the text in the DOM.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.onAdd = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { text.add(wrapper);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { text: (str || str === 0) ? str : '', // alignment is available now // #3295: 0 not rendered if given as a value
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { x: x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { y: y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
6083  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (box && defined(anchorX)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { anchorX: anchorX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { anchorY: anchorY
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /*
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Add specific attribute setters.
6094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
6095  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // only change local variables
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.widthSetter = function(value) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { width = H.isNumber(value) ? value : null; // width:auto => null
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.heightSetter = function(value) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { height = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper['text-alignSetter'] = function(value) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { textAlign = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.paddingSetter = function(value) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (defined(value) && value !== padding) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { padding = wrapper.padding = value;
6109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { updateTextPadding();
6110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.paddingLeftSetter = function(value) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (defined(value) && value !== paddingLeft) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { paddingLeft = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { updateTextPadding();
6116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
6118  
6119  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // change local variable and prevent setting attribute on the group
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.alignSetter = function(value) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { value = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { left: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { center: 0.5,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { right: 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }[value];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (value !== alignFactor) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { alignFactor = value;
6129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (bBox) { // Bounding box exists, means we're dynamically changing
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { x: wrapperX
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }); // #5134
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
6136  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // apply these to the box and the text alike
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.textSetter = function(value) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (value !== undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { text.textSetter(value);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { updateBoxSize();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { updateTextPadding();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
6145  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // apply these to the box but not to the text
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper['stroke-widthSetter'] = function(value, key) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (value) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { needsBox = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { strokeWidth = this['stroke-width'] = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { boxAttr(key, value);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
6154  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.strokeSetter = wrapper.fillSetter = wrapper.rSetter = function(value, key) {
6156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (key === 'fill' && value) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { needsBox = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { boxAttr(key, value);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
6161  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.anchorXSetter = function(value, key) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { anchorX = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { boxAttr(key, Math.round(value) - getCrispAdjust() - wrapperX);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.anchorYSetter = function(value, key) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { anchorY = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { boxAttr(key, value - wrapperY);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
6170  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // rename attributes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.xSetter = function(value) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.x = value; // for animation getter
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (alignFactor) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { value -= alignFactor * ((width || bBox.width) + 2 * padding);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapperX = Math.round(value);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.attr('translateX', wrapperX);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.ySetter = function(value) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapperY = wrapper.y = Math.round(value);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.attr('translateY', wrapperY);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
6184  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Redirect certain methods to either the box or the text
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var baseCss = wrapper.css;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return extend(wrapper, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Pick up some properties and apply them to the text instead of the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * wrapper.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @ignore
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { css: function(styles) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (styles) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var textStyles = {};
6196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { styles = merge(styles); // create a copy to avoid altering the original object (#537)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { each(wrapper.textProps, function(prop) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (styles[prop] !== undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { textStyles[prop] = styles[prop];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { delete styles[prop];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { text.css(textStyles);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return baseCss.call(wrapper, styles);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Return the bounding box of the box, not the group.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @ignore
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { getBBox: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { width: bBox.width + 2 * padding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { height: bBox.height + 2 * padding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { x: bBox.x - padding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { y: bBox.y - padding
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
6219  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Apply the shadow to the box.
6222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @ignore
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { shadow: function(b) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (b) {
6226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { updateBoxSize();
6227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (box) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { box.shadow(b);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return wrapper;
6232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
6233  
6234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Destroy and release memory.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @ignore
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { destroy: function() {
6239  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Added by button implementation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { removeEvent(wrapper.element, 'mouseenter');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { removeEvent(wrapper.element, 'mouseleave');
6243  
6244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (text) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { text = text.destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (box) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { box = box.destroy();
6249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Call base implementation to destroy the rest
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { SVGElement.prototype.destroy.call(wrapper);
6252  
6253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Release local pointers (#1298)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper = renderer = updateBoxSize = updateTextPadding = boxAttr = null;
6255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }; // end SVGRenderer
6259  
6260  
6261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // general renderer
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { H.Renderer = SVGRenderer;
6263  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { (function(H) {
6266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * (c) 2010-2017 Torstein Honsi
6268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var attr = H.attr,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { createElement = H.createElement,
6273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { css = H.css,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { defined = H.defined,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { extend = H.extend,
6277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { isFirefox = H.isFirefox,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { isMS = H.isMS,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { isWebKit = H.isWebKit,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { pInt = H.pInt,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { SVGElement = H.SVGElement,
6282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { SVGRenderer = H.SVGRenderer,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { win = H.win,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrap = H.wrap;
6285  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Extend SvgElement for useHTML option
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { extend(SVGElement.prototype, /** @lends SVGElement.prototype */ {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
6289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Apply CSS to HTML elements. This is used in text within SVG rendering and
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * by the VML renderer
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
6292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { htmlCss: function(styles) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var wrapper = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { element = wrapper.element,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { textWidth = styles && element.tagName === 'SPAN' && styles.width;
6296  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (textWidth) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { delete styles.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.textWidth = textWidth;
6300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.updateTransform();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (styles && styles.textOverflow === 'ellipsis') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { styles.whiteSpace = 'nowrap';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { styles.overflow = 'hidden';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.styles = extend(wrapper.styles, styles);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { css(wrapper.element, styles);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return wrapper;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
6311  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
6313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * VML and useHTML method for calculating the bounding box based on offsets
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {Boolean} refresh Whether to force a fresh value from the DOM or to
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * use the cached value
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @return {Object} A hash containing values for x, y, width and height
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
6319  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { htmlGetBBox: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var wrapper = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { element = wrapper.element;
6323  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // faking getBBox in exported SVG in legacy IE
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // faking getBBox in exported SVG in legacy IE (is this a duplicate of the fix for #1079?)
6326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (element.nodeName === 'text') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { element.style.position = 'absolute';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6329  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { x: element.offsetLeft,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { y: element.offsetTop,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { width: element.offsetWidth,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { height: element.offsetHeight
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
6337  
6338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * VML override private method to update elements based on internal
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * properties based on SVG transform
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { htmlUpdateTransform: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // aligning non added elements is expensive
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (!this.added) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { this.alignOnAdd = true;
6346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6348  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var wrapper = this,
6350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { renderer = wrapper.renderer,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { elem = wrapper.element,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { translateX = wrapper.translateX || 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { translateY = wrapper.translateY || 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { x = wrapper.x || 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { y = wrapper.y || 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { align = wrapper.textAlign || 'left',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { alignCorrection = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { left: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { center: 0.5,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { right: 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }[align],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { styles = wrapper.styles;
6363  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // apply translate
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { css(elem, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { marginLeft: translateX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { marginTop: translateY
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
6369  
6370  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (wrapper.shadows) { // used in labels/tooltip
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { each(wrapper.shadows, function(shadow) {
6373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { css(shadow, {
6374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { marginLeft: translateX + 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { marginTop: translateY + 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6379  
6380  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // apply inversion
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (wrapper.inverted) { // wrapper is a group
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { each(elem.childNodes, function(child) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { renderer.invertChild(child, elem);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6387  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (elem.tagName === 'SPAN') {
6389  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var rotation = wrapper.rotation,
6391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { baseline,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { textWidth = pInt(wrapper.textWidth),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { whiteSpace = styles && styles.whiteSpace,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { currentTextTransform = [rotation, align, elem.innerHTML, wrapper.textWidth, wrapper.textAlign].join(',');
6395  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (currentTextTransform !== wrapper.cTT) { // do the calculations and DOM access only if properties changed
6397  
6398  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { baseline = renderer.fontMetrics(elem.style.fontSize).b;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Renderer specific handling of span rotation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (defined(rotation)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.setSpanRotation(rotation, alignCorrection, baseline);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6405  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Reset multiline/ellipsis in order to read width (#4928, #5417)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { css(elem, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { width: '',
6409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { whiteSpace: whiteSpace || 'nowrap'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
6411  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Update textWidth
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (elem.offsetWidth > textWidth && /[ \-]/.test(elem.textContent || elem.innerText)) { // #983, #1254
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { css(elem, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { width: textWidth + 'px',
6416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { display: 'block',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { whiteSpace: whiteSpace || 'normal' // #3331
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6420  
6421  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.getSpanCorrection(elem.offsetWidth, baseline, alignCorrection, rotation, align);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6424  
6425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // apply position with correction
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { css(elem, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { left: (x + (wrapper.xCorr || 0)) + 'px',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { top: (y + (wrapper.yCorr || 0)) + 'px'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
6430  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // force reflow in webkit to apply the left and top on useHTML element (#1249)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (isWebKit) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { baseline = elem.offsetHeight; // assigned to baseline for lint purpose
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6435  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // record current text transform
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.cTT = currentTextTransform;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
6440  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Set the rotation of an individual HTML span
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { setSpanRotation: function(rotation, alignCorrection, baseline) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var rotationStyle = {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { cssTransformKey = isMS ? '-ms-transform' : isWebKit ? '-webkit-transform' : isFirefox ? 'MozTransform' : win.opera ? '-o-transform' : '';
6447  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { rotationStyle[cssTransformKey] = rotationStyle.transform = 'rotate(' + rotation + 'deg)';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { rotationStyle[cssTransformKey + (isFirefox ? 'Origin' : '-origin')] = rotationStyle.transformOrigin = (alignCorrection * 100) + '% ' + baseline + 'px';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { css(this.element, rotationStyle);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
6452  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Get the correction in X and Y positioning as the element is rotated.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { getSpanCorrection: function(width, baseline, alignCorrection) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { this.xCorr = -width * alignCorrection;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { this.yCorr = -baseline;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
6461  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Extend SvgRenderer for useHTML option.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { extend(SVGRenderer.prototype, /** @lends SVGRenderer.prototype */ {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Create HTML text node. This is used by the VML renderer as well as the SVG
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * renderer through the useHTML option.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {String} str
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {Number} x
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {Number} y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { html: function(str, x, y) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var wrapper = this.createElement('span'),
6474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { element = wrapper.element,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { renderer = wrapper.renderer,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { isSVG = renderer.isSVG,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { addSetters = function(element, style) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // These properties are set as attributes on the SVG group, and as
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // identical CSS properties on the div. (#3542)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { each(['opacity', 'visibility'], function(prop) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrap(element, prop + 'Setter', function(proceed, value, key, elem) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { proceed.call(this, value, key, elem);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { style[key] = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
6487  
6488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Text setter
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.textSetter = function(value) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (value !== element.innerHTML) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { delete this.bBox;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { element.innerHTML = this.textStr = value;
6494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.htmlUpdateTransform();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
6496  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Add setters for the element itself (#4938)
6498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (isSVG) { // #4938, only for HTML within SVG
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { addSetters(wrapper, wrapper.element.style);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6501  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Various setters which rely on update transform
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.xSetter = wrapper.ySetter = wrapper.alignSetter = wrapper.rotationSetter = function(value, key) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (key === 'align') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { key = 'textAlign'; // Do not overwrite the SVGElement.align method. Same as VML.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper[key] = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.htmlUpdateTransform();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
6510  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Set the default attributes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { .attr({
6514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { text: str,
6515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { x: Math.round(x),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { y: Math.round(y)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { })
6518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { .css({
6519  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { fontFamily: this.style.fontFamily,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { fontSize: this.style.fontSize,
6522  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { position: 'absolute'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
6525  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Keep the whiteSpace style outside the wrapper.styles collection
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { element.style.whiteSpace = 'nowrap';
6528  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Use the HTML specific .css method
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.css = wrapper.htmlCss;
6531  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // This is specific for HTML within SVG
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (isSVG) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.add = function(svgGroupWrapper) {
6535  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var htmlGroup,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { container = renderer.box.parentNode,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { parentGroup,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { parents = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { this.parentGroup = svgGroupWrapper;
6542  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Create a mock group to hold the HTML elements
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (svgGroupWrapper) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { htmlGroup = svgGroupWrapper.div;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (!htmlGroup) {
6547  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Read the parent chain into an array and read from top down
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { parentGroup = svgGroupWrapper;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { while (parentGroup) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { parents.push(parentGroup);
6553  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Move up to the next parent group
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { parentGroup = parentGroup.parentGroup;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6557  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Ensure dynamically updating position when any parent is translated
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { each(parents.reverse(), function(parentGroup) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var htmlGroupStyle,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { cls = attr(parentGroup.element, 'class');
6562  
6563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (cls) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { cls = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { className: cls
6566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { } // else null
6568  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Create a HTML div and append it to the parent div to emulate
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // the SVG group structure
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { htmlGroup = parentGroup.div = parentGroup.div || createElement('div', cls, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { position: 'absolute',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { left: (parentGroup.translateX || 0) + 'px',
6574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { top: (parentGroup.translateY || 0) + 'px',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { display: parentGroup.display,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { opacity: parentGroup.opacity, // #5075
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { pointerEvents: parentGroup.styles && parentGroup.styles.pointerEvents // #5595
6578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }, htmlGroup || container); // the top group is appended to container
6579  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Shortcut
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { htmlGroupStyle = htmlGroup.style;
6582  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Set listeners to update the HTML div's position whenever the SVG group
6584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // position is changed
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { extend(parentGroup, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { on: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.on.apply({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { element: parents[0].div
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }, arguments);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return parentGroup;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
6592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { translateXSetter: function(value, key) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { htmlGroupStyle.left = value + 'px';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { parentGroup[key] = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { parentGroup.doTransform = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { translateYSetter: function(value, key) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { htmlGroupStyle.top = value + 'px';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { parentGroup[key] = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { parentGroup.doTransform = 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
6603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { addSetters(parentGroup, htmlGroupStyle);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
6605  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { htmlGroup = container;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6610  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { htmlGroup.appendChild(element);
6612  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Shared with VML:
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.added = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (wrapper.alignOnAdd) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.htmlUpdateTransform();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return wrapper;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return wrapper;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
6633  
6634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var VMLRenderer,
6635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { VMLRendererExtension,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { VMLElement,
6637  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { createElement = H.createElement,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { css = H.css,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { defined = H.defined,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { deg2rad = H.deg2rad,
6642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { discardElement = H.discardElement,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { doc = H.doc,
6644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { erase = H.erase,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { extend = H.extend,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { extendClass = H.extendClass,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { isArray = H.isArray,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { isNumber = H.isNumber,
6650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { isObject = H.isObject,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { merge = H.merge,
6652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { noop = H.noop,
6653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { pick = H.pick,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { pInt = H.pInt,
6655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { svg = H.svg,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { SVGElement = H.SVGElement,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { SVGRenderer = H.SVGRenderer,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { win = H.win;
6659  
6660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /* ****************************************************************************
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * START OF INTERNET EXPLORER <= 8 SPECIFIC CODE *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * For applications and websites that don't need IE support, like platform *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * targeted mobile apps and web apps, this code can be removed. *
6666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { *****************************************************************************/
6668  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @constructor
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (!svg) {
6673  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
6675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * The VML element wrapper.
6676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { VMLElement = {
6678  
6679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { docMode8: doc && doc.documentMode === 8,
6680  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Initialize a new VML element wrapper. It builds the markup as a string
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * to minimize DOM traffic.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {Object} renderer
6685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {Object} nodeName
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { init: function(renderer, nodeName) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var wrapper = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { markup = ['<', nodeName, ' filled="f" stroked="f"'],
6690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { style = ['position: ', 'absolute', ';'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { isDiv = nodeName === 'div';
6692  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // divs and shapes need size
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (nodeName === 'shape' || isDiv) {
6695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { style.push('left:0;top:0;width:1px;height:1px;');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { style.push('visibility: ', isDiv ? 'hidden' : 'visible');
6698  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { markup.push(' style="', style.join(''), '"/>');
6700  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // create element with default attributes and style
6702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (nodeName) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { markup = isDiv || nodeName === 'span' || nodeName === 'img' ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { markup.join('') :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { renderer.prepVML(markup);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.element = createElement(markup);
6707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6708  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.renderer = renderer;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
6711  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Add the node to the given parent
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {Object} parent
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
6716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { add: function(parent) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var wrapper = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { renderer = wrapper.renderer,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { element = wrapper.element,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { box = renderer.box,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { inverted = parent && parent.inverted,
6722  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // get the parent node
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { parentNode = parent ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { parent.element || parent :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { box;
6727  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (parent) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { this.parentGroup = parent;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6731  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // if the parent group is inverted, apply inversion on all children
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (inverted) { // only on groups
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { renderer.invertChild(element, parentNode);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6736  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // append it
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { parentNode.appendChild(element);
6739  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // align text after adding to be able to read offset
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.added = true;
6742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (wrapper.alignOnAdd && !wrapper.deferUpdateTransform) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.updateTransform();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6745  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // fire an event for internal hooks
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (wrapper.onAdd) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.onAdd();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6750  
6751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // IE8 Standards can't set the class name before the element is appended
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (this.className) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { this.attr('class', this.className);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6755  
6756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return wrapper;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
6758  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * VML always uses htmlUpdateTransform
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { updateTransform: SVGElement.prototype.htmlUpdateTransform,
6763  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
6765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Set the rotation of a span with oldIE's filter
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { setSpanRotation: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Adjust for alignment and rotation. Rotation of useHTML content is not yet implemented
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // but it can probably be implemented for Firefox 3.5+ on user request. FF3.5+
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // has support for CSS3 transform. The getBBox method also needs to be updated
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // to compensate for the rotation, like it currently does for SVG.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Test case: http://jsfiddle.net/highcharts/Ybt44/
6773  
6774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var rotation = this.rotation,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { costheta = Math.cos(rotation * deg2rad),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { sintheta = Math.sin(rotation * deg2rad);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { css(this.element, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { filter: rotation ? ['progid:DXImageTransform.Microsoft.Matrix(M11=', costheta,
6780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { ', M12=', -sintheta, ', M21=', sintheta, ', M22=', costheta,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { ', sizingMethod=\'auto expand\')'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { ].join('') : 'none'
6783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
6785  
6786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Get the positioning correction for the span after rotating.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { getSpanCorrection: function(width, baseline, alignCorrection, rotation, align) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var costheta = rotation ? Math.cos(rotation * deg2rad) : 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { sintheta = rotation ? Math.sin(rotation * deg2rad) : 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { height = pick(this.elemHeight, this.element.offsetHeight),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { quad,
6795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { nonLeft = align && align !== 'left';
6796  
6797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // correct x and y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { this.xCorr = costheta < 0 && -width;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { this.yCorr = sintheta < 0 && -height;
6800  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // correct for baseline and corners spilling out after rotation
6802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { quad = costheta * sintheta < 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { this.xCorr += sintheta * baseline * (quad ? 1 - alignCorrection : alignCorrection);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { this.yCorr -= costheta * baseline * (rotation ? (quad ? alignCorrection : 1 - alignCorrection) : 1);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // correct for the length/height of the text
6806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (nonLeft) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { this.xCorr -= width * alignCorrection * (costheta < 0 ? -1 : 1);
6808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (rotation) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { this.yCorr -= height * alignCorrection * (sintheta < 0 ? -1 : 1);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { css(this.element, {
6812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { textAlign: align
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
6816  
6817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Converts a subset of an SVG path definition to its VML counterpart. Takes an array
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * as the parameter and returns a string.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { pathToVML: function(value) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // convert paths
6823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var i = value.length,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { path = [];
6825  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { while (i--) {
6827  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Multiply by 10 to allow subpixel precision.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Substracting half a pixel seems to make the coordinates
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // align with SVG, but this hasn't been tested thoroughly
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (isNumber(value[i])) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { path[i] = Math.round(value[i] * 10) - 5;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { } else if (value[i] === 'Z') { // close the path
6834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { path[i] = 'x';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { path[i] = value[i];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // When the start X and end X coordinates of an arc are too close,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // they are rounded to the same value above. In this case, substract or
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // add 1 from the end X and Y positions. #186, #760, #1371, #1410.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (value.isArc && (value[i] === 'wa' || value[i] === 'at')) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Start and end X
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (path[i + 5] === path[i + 7]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { path[i + 7] += value[i + 7] > value[i + 5] ? 1 : -1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Start and end Y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (path[i + 6] === path[i + 8]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { path[i + 8] += value[i + 8] > value[i + 6] ? 1 : -1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6853  
6854  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // Loop up again to handle path shortcuts (#2132)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /*while (i++ < path.length) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (path[i] === 'H') { // horizontal line to
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { path[i] = 'L';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { path.splice(i + 2, 0, path[i - 1]);
6860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { } else if (path[i] === 'V') { // vertical line to
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { path[i] = 'L';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { path.splice(i + 1, 0, path[i - 2]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }*/
6865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return path.join(' ') || 'x';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Set the element's clipping to a predefined rectangle
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {String} id The id of the clip rectangle
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
6873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { clip: function(clipRect) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var wrapper = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { clipMembers,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { cssRet;
6877  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (clipRect) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { clipMembers = clipRect.members;
6880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { erase(clipMembers, wrapper); // Ensure unique list of elements (#1258)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { clipMembers.push(wrapper);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.destroyClip = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { erase(clipMembers, wrapper);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { cssRet = clipRect.getCSS(wrapper);
6886  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { } else {
6888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (wrapper.destroyClip) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { wrapper.destroyClip();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { cssRet = {
6892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { clip: wrapper.docMode8 ? 'inherit' : 'rect(auto)'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }; // #1214
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6895  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return wrapper.css(cssRet);
6897  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
6899  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Set styles for the element
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {Object} styles
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { css: SVGElement.prototype.htmlCss,
6905  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Removes a child either by removeChild or move to garbageBin.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Issue 490; in VML removeChild results in Orphaned nodes according to sIEve, discardElement does not.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { safeRemoveChild: function(element) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // discardElement will detach the node from its parent before attaching it
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // to the garbage bin. Therefore it is important that the node is attached and have parent.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (element.parentNode) {
6914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { discardElement(element);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
6917  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Extend element.destroy by removing it from the clip members array
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { destroy: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (this.destroyClip) {
6923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { this.destroyClip();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6925  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return SVGElement.prototype.destroy.apply(this);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Add an event listener. VML override for normalizing event parameters.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {String} eventType
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {Function} handler
6933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { on: function(eventType, handler) {
6935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // simplest possible event model for internal use
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { this.element['on' + eventType] = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var evt = win.event;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { evt.target = evt.srcElement;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { handler(evt);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return this;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
6943  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * In stacked columns, cut off the shadows so that they don't overlap
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
6947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { cutOffPath: function(path, length) {
6948  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var len;
6950  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { path = path.split(/[ ,]/); // The extra comma tricks the trailing comma remover in "gulp scripts" task
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { len = path.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (len === 9 || len === 11) {
6955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { path[len - 4] = path[len - 2] = pInt(path[len - 2]) - 10 * length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { return path.join(' ');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { },
6959  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * Apply a drop shadow by copying elements and giving them different strokes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { * @param {Boolean|Object} shadowOptions
6963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { shadow: function(shadowOptions, group, cutOff) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { var shadows = [],
6966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { i,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { element = this.element,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { renderer = this.renderer,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { shadow,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { elemStyle = element.style,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { markup,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { path = element.path,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { strokeWidth,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { modifiedPath,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { shadowWidth,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { shadowElementOpacity;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { // some times empty paths are not strings
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (path && typeof path.value !== 'string') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { path = 'x';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { }
6982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { modifiedPath = path;
6983  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { if (shadowOptions) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { shadowWidth = pick(shadowOptions.width, 3);
6986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { shadowElementOpacity = (shadowOptions.opacity || 0.15) / shadowWidth;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) { for (i = 1; i <= 3; i++) {
6988  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { strokeWidth = (shadowWidth * 2) + 1 - (2 * i);
6990  
6991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Cut off shadows for stacked column items
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (cutOff) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { modifiedPath = this.cutOffPath(path.value, strokeWidth + 0.5);
6994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
6995  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { markup = ['
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {>'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { shadow = createElement(renderer.prepVML(markup),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { null, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { left: pInt(elemStyle.left) + pick(shadowOptions.offsetX, 1),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { top: pInt(elemStyle.top) + pick(shadowOptions.offsetY, 1)
7005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (cutOff) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { shadow.cutOff = strokeWidth + 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // apply the opacity
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { markup = [
7013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { '<stroke color="',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { shadowOptions.color || '#000000',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { '" opacity="', shadowElementOpacity * i, '"/>'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { createElement(renderer.prepVML(markup), null, null, shadow);
7018  
7019  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // insert it
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (group) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { group.element.appendChild(shadow);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { element.parentNode.insertBefore(shadow, element);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
7026  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // record it
7028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { shadows.push(shadow);
7029  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
7031  
7032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this.shadows = shadows;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { return this;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { updateShadows: noop, // Used in SVG only
7037  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { setAttr: function(key, value) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (this.docMode8) { // IE8 setAttribute bug
7040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this.element[key] = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this.element.setAttribute(key, value);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
7045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { classSetter: function(value) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // IE8 Standards mode has problems retrieving the className unless set like this.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // IE8 Standards can't set the class name before the element is appended.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { (this.added ? this.element : this).className = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { dashstyleSetter: function(value, key, element) {
7051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var strokeElem = element.getElementsByTagName('stroke')[0] ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { createElement(this.renderer.prepVML(['>']), null, null, element);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { strokeElem[key] = value || 'solid';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this[key] = value;
7055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { /* because changing stroke-width will change the dash length
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { and cause an epileptic effect */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { dSetter: function(value, key, element) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var i,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { shadows = this.shadows;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { value = value || [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this.d = value.join && value.join(' '); // used in getter for animation
7063  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { element.path = value = this.pathToVML(value);
7065  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // update shadows
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (shadows) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { i = shadows.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { while (i--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { shadows[i].path = shadows[i].cutOff ? this.cutOffPath(value, shadows[i].cutOff) : value;
7071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this.setAttr(key, value);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { fillSetter: function(value, key, element) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var nodeName = element.nodeName;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (nodeName === 'SPAN') { // text color
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { element.style.color = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else if (nodeName !== 'IMG') { // #1336
7080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { element.filled = value !== 'none';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this.setAttr('fillcolor', this.renderer.color(value, element, key, this));
7082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { 'fill-opacitySetter': function(value, key, element) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { createElement(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this.renderer.prepVML(['<', key.split('-')[0], ' opacity="', value, '"/>']),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { element
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
7092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { opacitySetter: noop, // Don't bother - animation is too slow and filters introduce artifacts
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { rotationSetter: function(value, key, element) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var style = element.style;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this[key] = style[key] = value; // style is for #1873
7096  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Correction for the 1x1 size of the shape container. Used in gauge needles.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { style.left = -Math.round(Math.sin(value * deg2rad) + 1) + 'px';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { style.top = Math.round(Math.cos(value * deg2rad)) + 'px';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { strokeSetter: function(value, key, element) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this.setAttr('strokecolor', this.renderer.color(value, element, key, this));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { 'stroke-widthSetter': function(value, key, element) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { element.stroked = !!value; // VML "stroked" attribute
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this[key] = value; // used in getter, issue #113
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (isNumber(value)) {
7108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { value += 'px';
7109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this.setAttr('strokeweight', value);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { titleSetter: function(value, key) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this.setAttr(key, value);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { visibilitySetter: function(value, key, element) {
7116  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Handle inherited visibility
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (value === 'inherit') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { value = 'visible';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
7121  
7122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Let the shadow follow the main element
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (this.shadows) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { each(this.shadows, function(shadow) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { shadow.style[key] = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
7128  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Instead of toggling the visibility CSS property, move the div out of the viewport.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // This works around #61 and #586
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (element.nodeName === 'DIV') {
7132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { value = value === 'hidden' ? '-999em' : 0;
7133  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // In order to redraw, IE7 needs the div to be visible when tucked away
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // outside the viewport. So the visibility is actually opposite of
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // the expected value. This applies to the tooltip only.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (!this.docMode8) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { element.style[key] = value ? 'visible' : 'hidden';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { key = 'top';
7141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { element.style[key] = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { xSetter: function(value, key, element) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this[key] = value; // used in getter
7146  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (key === 'x') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { key = 'left';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else if (key === 'y') {
7150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { key = 'top';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
7152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { /* else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {Math.max(0, value); // don't set width or height below zero (#311)
7154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }*/
7155  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // clipping rectangle special
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (this.updateClipping) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this[key] = value; // the key is now 'left' or 'top' for 'x' and 'y'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this.updateClipping();
7160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // normal
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { element.style[key] = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { zIndexSetter: function(value, key, 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { element.style[key] = value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { VMLElement['stroke-opacitySetter'] = VMLElement['fill-opacitySetter'];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { H.VMLElement = VMLElement = extendClass(SVGElement, VMLElement);
7171  
7172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Some shared setters
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { VMLElement.prototype.ySetter =
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { VMLElement.prototype.widthSetter =
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { VMLElement.prototype.heightSetter =
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { VMLElement.prototype.xSetter;
7177  
7178  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { /**
7180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { VMLRendererExtension = { // inherit SVGRenderer
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { Element: VMLElement,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { isIE8: win.navigator.userAgent.indexOf('MSIE 8.0') > -1,
7186  
7187  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { init: function(container, width, height) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var renderer = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { boxWrapper,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { box,
7198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { css;
7199  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { renderer.alignedObjects = [];
7201  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { boxWrapper = renderer.createElement('div')
7203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { .css({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { position: 'relative'
7205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { box = boxWrapper.element;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { container.appendChild(boxWrapper.element);
7208  
7209  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // generate the containing box
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { renderer.isVML = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { renderer.box = box;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { renderer.boxWrapper = boxWrapper;
7214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { renderer.gradients = {};
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { renderer.cache = {}; // Cache for numerical bounding boxes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { renderer.cacheKeys = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { renderer.imgCount = 0;
7218  
7219  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { renderer.setSize(width, height, false);
7221  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // The only way to make IE6 and IE7 print is to use a global namespace. However,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // with IE8 the only way to make the dynamic shapes visible in screen and print mode
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // seems to be to add the xmlns attribute and the behaviour style inline.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (!doc.namespaces.hcv) {
7226  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { doc.namespaces.add('hcv', 'urn:schemas-microsoft-com:vml');
7228  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Setup default CSS (#2153, #2368, #2384)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { css = 'hcv\\:fill, hcv\\:path, hcv\\:shape, hcv\\:stroke' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { '{ behavior:url(#default#VML); display: inline-block; } ';
7232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { try {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { doc.createStyleSheet().cssText = css;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } catch (e) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { doc.styleSheets[0].cssText += css;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
7237  
7238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
7240  
7241  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { /**
7243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { isHidden: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { return !this.box.offsetWidth;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
7249  
7250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {for setting the CSS style to all associated members.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { clipRect: function(x, y, width, height) {
7260  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // create a dummy element
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var clipRect = this.createElement(),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { isObj = isObject(x);
7264  
7265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // mimic a rectangle with its style object for automatic updating in attr
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { return extend(clipRect, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { members: [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { count: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { left: (isObj ? x.x : x) + 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { top: (isObj ? x.y : y) + 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { width: (isObj ? x.width : width) - 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { height: (isObj ? x.height : height) - 1,
7273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { getCSS: function(wrapper) {
7274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var element = wrapper.element,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { nodeName = element.nodeName,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { isShape = nodeName === 'shape',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { inverted = wrapper.inverted,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { rect = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { top = rect.top - (isShape ? element.offsetTop : 0),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { left = rect.left,
7281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { right = left + rect.width,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { bottom = top + rect.height,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ret = {
7284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { clip: 'rect(' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { Math.round(inverted ? left : top) + 'px,' +
7286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { Math.round(inverted ? bottom : right) + 'px,' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { Math.round(inverted ? right : bottom) + 'px,' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { Math.round(inverted ? top : left) + 'px)'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { };
7290  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // issue 74 workaround
7292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (!inverted && wrapper.docMode8 && nodeName === 'DIV') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { extend(ret, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { width: right + 'px',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { height: bottom + 'px'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { return ret;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
7300  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // used in attr and animation to update the clipping of all members
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { updateClipping: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { each(clipRect.members, function(member) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Member.element is falsy on deleted series, like in
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // stock/members/series-remove demo. Should be removed
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // from members, but this will do.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (member.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { member.css(clipRect.getCSS(member));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { });
7313  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
7315  
7316  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { /**
7318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return it if it's a string, make it a gradient if it's a
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { color: function(color, elem, prop, wrapper) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var renderer = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { colorObject,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { regexRgba = /^rgba/,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { markup,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { fillType,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ret = 'none';
7330  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Check for linear or radial gradient
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (color && color.linearGradient) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { fillType = 'gradient';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else if (color && color.radialGradient) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { fillType = 'pattern';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
7337  
7338  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (fillType) {
7340  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var stopColor,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { stopOpacity,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { gradient = color.linearGradient || color.radialGradient,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { opacity1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { opacity2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { color1,
7351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { color2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { fillAttr = '',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { stops = color.stops,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { firstStop,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { lastStop,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { colors = [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { addFillNode = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Add the fill subnode. When colors attribute is used, the meanings of opacity and o:opacity2
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // are reversed.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { markup = ['
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {>'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { createElement(renderer.prepVML(markup), null, null, elem);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { };
7367  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Extend from 0 to 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { firstStop = stops[0];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { lastStop = stops[stops.length - 1];
7371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (firstStop[0] > 0) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { stops.unshift([
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { firstStop[1]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ]);
7376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (lastStop[0] < 1) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { stops.push([
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { lastStop[1]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Compute the stops
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { each(stops, function(stop, i) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (regexRgba.test(stop[1])) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { colorObject = H.color(stop[1]);
7388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { stopColor = colorObject.get('rgb');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { stopOpacity = colorObject.get('a');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { stopColor = stop[1];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { stopOpacity = 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
7394  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Build the color attribute
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { colors.push((stop[0] * 100) + '% ' + stopColor);
7397  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Only start and end opacities are allowed, so we use the first and the last
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (!i) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { opacity1 = stopOpacity;
7401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { color2 = stopColor;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { opacity2 = stopOpacity;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { color1 = stopColor;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { });
7407  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Apply the gradient to fills only.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (prop === 'fill') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Handle linear gradient angle
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (fillType === 'gradient') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x1 = gradient.x1 || gradient[0] || 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y1 = gradient.y1 || gradient[1] || 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x2 = gradient.x2 || gradient[2] || 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y2 = gradient.y2 || gradient[3] || 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { fillAttr = 'angle="' + (90 - Math.atan(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { (y2 - y1) / // y vector
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { (x2 - x1) // x vector
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ) * 180 / Math.PI) + '"';
7421  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { addFillNode();
7423  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Radial (circular) gradient
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var r = gradient.r,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { sizex = r * 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { sizey = r * 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { cx = gradient.cx,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { cy = gradient.cy,
7432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { radialReference = elem.radialReference,
7433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { bBox,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { applyRadialGradient = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (radialReference) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { bBox = wrapper.getBBox();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { cx += (radialReference[0] - bBox.x) / bBox.width - 0.5;
7438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { cy += (radialReference[1] - bBox.y) / bBox.height - 0.5;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { sizex *= radialReference[2] / bBox.width;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { sizey *= radialReference[2] / bBox.height;
7441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
7442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { fillAttr = 'src="' + H.getOptions().global.VMLRadialGradientURL + '" ' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { 'size="' + sizex + ',' + sizey + '" ' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { 'origin="0.5,0.5" ' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { 'position="' + cx + ',' + cy + '" ' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { 'color2="' + color2 + '" ';
7447  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { addFillNode();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { };
7450  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Apply radial gradient
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (wrapper.added) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { applyRadialGradient();
7454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // We need to know the bounding box to get the size and position right
7456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { wrapper.onAdd = applyRadialGradient;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
7458  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // The fill element's color attribute is broken in IE8 standards mode, so we
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// need to set the parent shape's fillcolor attribute instead.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ret = color1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7463  
7464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Gradients are not supported for VML stroke, return the first color. #722.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7468  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// If the color is an rgba color, split it and add a fill node
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // to hold the opacity component
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else if (regexRgba.test(color) && elem.tagName !== 'IMG') {
7472  
7473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'-opacitySetter'](colorObject.get('a'), prop, elem);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'rgb');
7478  
7479  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else {
7481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var propNodes = elem.getElementsByTagName(prop); // 'stroke' or 'fill' node
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (propNodes.length) {
7483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'solid';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7488  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return ret;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7491  
7492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Take a VML string and prepare it for either IE8 or IE6/IE7.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Array} markup A string array of the VML markup to prepare
7495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
7496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(markup) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var vmlStyle = 'display:inline-block;behavior:url(#default#VML);',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.isIE8;
7499  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'');
7501  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (isIE8) { // add xmlns and style inline
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { markup = markup.replace('/>', ' xmlns="urn:schemas-microsoft-com:vml" />');
7504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (markup.indexOf('style="') === -1) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'/>', ' style="' + vmlStyle + '" />');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'style="', 'style="' + vmlStyle);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7509  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else { // add namespace
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { markup = markup.replace('<', '<hcv:');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7513  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return markup;
7515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7516  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Create rotated and aligned text
7519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {String} str
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Number} x
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Number} y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7524  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Create and return a path element
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Array} path
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(path) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var attr = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// subpixel precision down to 0.1 (width and height = 1px)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { coordsize: '10 10'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (isArray(path)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else if (isObject(path)) { // attributes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { extend(attr, path);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// create the shape
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { return this.createElement('shape').attr(attr);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7542  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Create and return a circle element. In VML circles are implemented as
7545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * shapes, which is faster than v:oval
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Number} x
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Number} y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Number} r
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(x, y, r) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var circle = this.symbol('circle');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (isObject(x)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {true; // Causes x and y to mean center (#1682)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { circle.r = r;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return circle.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7564  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Create a group using an outer div and an inner v:group to allow rotating
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * and flipping. A simple v:group would have problems with positioning
7568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * child HTML elements and CSS clip.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { *
7570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {String} name The name of the group
7571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(name) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var wrapper,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7575  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// set the class name
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (name) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'className': 'highcharts-' + name,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'class': 'highcharts-' + name
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7583  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// the div to hold HTML and clipping
7585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { wrapper = this.createElement('div').attr(attribs);
7586  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return wrapper;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7589  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * VML override to create a regular HTML image
7592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {String} src
7593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Number} x
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Number} y
7595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Number} width
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Number} height
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(src, x, y, width, height) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var obj = this.createElement('img')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7603  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (arguments.length > 1) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return obj;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7614  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * For rectangles, VML uses a shape for rect to overcome bugs and rotation problems
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(nodeName) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return nodeName === 'rect' ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.symbol(nodeName) :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this, nodeName);
7622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7623  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * In the VML renderer, each child of an inverted div (group) is inverted
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Object} element
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Object} parentNode
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(element, parentNode) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var ren = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'IMG' && element.style; // #1111
7633  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'x',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7640  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Recursively invert child elements, needed for nested composite
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // shapes like box plots and error bars. #1680, #1806.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { each(element.childNodes, function(child) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7647  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
7649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Symbol definitions that override the parent SVG renderer's symbols
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
7652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// VML specific arc function
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { arc: function(x, y, w, h, options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var start = options.start,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {Math.cos(start),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {Math.sin(start),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {Math.cos(end),
7662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {Math.sin(end),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7664  
7665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (end - start === 0) { // no angle, don't show it.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { return ['x'];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7668  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'wa', // clockwise arc to
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x - radius, // left
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y - radius, // top
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x + radius, // right
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y + radius, // bottom
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x + radius * cosStart, // start x
7676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y + radius * sinStart, // start y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x + radius * cosEnd, // end x
7678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y + radius * sinEnd // end y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ];
7680  
7681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (options.open && !innerRadius) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'e',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'M',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// - innerRadius,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y // - innerRadius
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7689  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'at', // anti clockwise arc to
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x - innerRadius, // left
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y - innerRadius, // top
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x + innerRadius, // right
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y + innerRadius, // bottom
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x + innerRadius * cosEnd, // start x
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y + innerRadius * sinEnd, // start y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x + innerRadius * cosStart, // end x
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y + innerRadius * sinStart, // end y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { 'x', // finish path
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { 'e' // close
7702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { );
7703  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {true;
7705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return ret;
7706  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Add circle symbol path. This performs significantly faster than v:oval.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { circle: function(x, y, w, h, wrapper) {
7710  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (wrapper && defined(wrapper.r)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7714  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Center correction, #1682
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (wrapper && wrapper.isCircle) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/ 2;
7718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y -= h / 2;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7720  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Return the path
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { return [
7723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'wa', // clockwisearcto
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x, // left
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y, // top
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x + w, // right
7727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y + h, // bottom
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x + w, // start x
7729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y + h / 2, // start y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x + w, // end x
7731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y + h / 2, // end y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //'x', // finish path
7733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { 'e' // close
7734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Add rectangle symbol path which eases rotation and omits arcsize problems
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * compared to the built-in VML roundrect shape. When borders are not rounded,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * use the simpler square path, else use the callout path without the arrow.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(x, y, w, h, options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return SVGRenderer.prototype.symbols[!defined(options) || !options.r ? 'square' : 'callout'].call(0, x, y, w, h, options);
7743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.init.apply(this, arguments);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7750  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// general renderer
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { H.Renderer = VMLRenderer;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// This method is used with exporting in old IE, when emulating SVG (see #2314)
7756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { SVGRenderer.prototype.measureSpanWidth = function(text, styles) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var measuringSpan = doc.createElement('span'),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7760  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.box.appendChild(measuringSpan);
7764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// #2463
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { return offsetWidth;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7768  
7769  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/* ****************************************************************************
7771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * END OF INTERNET EXPLORER <= 8 SPECIFIC CODE *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { *****************************************************************************/
7775  
7776  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(H) {
7779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var correctFloat = H.correctFloat,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7791  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * The Tick class
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(axis, pos, type, noLabel) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.axis = axis;
7797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.pos = pos;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.type = type || '';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.isNew = true;
7800  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (!type && !noLabel) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.addLabel();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7805  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Write the tick label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var tick = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7829  
7830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Set the datetime label format. If a higher rank is set for this position, use that. If not,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // use the general format.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (axis.isDatetimeAxis && tickPositionInfo) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// set properties for access in render method
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tick.isFirst = isFirst;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// get the string
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { str = axis.labelFormatter.call({
7844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7851  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// prepare CSS
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //css = width && { width: Math.max(1, Math.round(width - 2 * (labelOptions.padding || 10))) + 'px' };
7854  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// first call
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (!defined(label)) {
7857  
7858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7866  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// without position absolute, IE export sometimes is wrong
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { .css(merge(labelOptions.style))
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Un-rotated length
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tick.rotation = 0; // Base value to detect change for new calls to getBBox
7874  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// update
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else if (label) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7882  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Get the offset height or width of the label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return this.label ?
7888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.label.getBBox()[this.axis.horiz ? 'height' : 'width'] :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7891  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Handle the label overflow by adjusting the labels to the left and right edge, or
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * hide them if they collide into the neighbour label.
7895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(xy) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var axis = this.axis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {Math.min(axis.pos, spacing[3])),
7902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {Math.max(axis.pos + axis.len, chartWidth - spacing[1])),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.label,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.rotation,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Check if the label overshoots the chart spacing box. If it does, move 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // If it now overshoots the slotWidth, add ellipsis.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (!rotation) {
7923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7925  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (leftPos < leftBound) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else if (rightPos > rightBound) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7932  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {Math.min(slotWidth, modifiedSlotWidth); // #4177
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (modifiedSlotWidth < slotWidth && axis.labelAlign === 'center') {
7935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {Math.min(labelWidth, modifiedSlotWidth)));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// If the label width exceeds the available space, set a text width to be
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // picked up below. Also, if a width has been set before, we need to set a new
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // one because the reported labelWidth will be limited by the box (#3938).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (labelWidth > modifiedSlotWidth || (axis.autoRotation && (label.styles || {}).width)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Add ellipsis to prevent rotated labels to be clipped against the edge of the chart
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else if (rotation < 0 && pxPos - factor * labelWidth < leftBound) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {Math.round(pxPos / Math.cos(rotation * deg2rad) - leftBound);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else if (rotation > 0 && pxPos + factor * labelWidth > rightBound) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { textWidth = Math.round((chartWidth - pxPos) / Math.cos(rotation * deg2rad));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7951  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (textWidth) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (!(axis.options.labels.style || {}).textOverflow) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'ellipsis';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7960  
7961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Get the x and y position for ticks and labels
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(horiz, pos, tickmarkOffset, old) {
7965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var axis = this.axis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7968  
7969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {null, null, old) + axis.transB : axis.left + axis.offset +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7974  
7975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7976  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {null, null, old) - axis.transB
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7980  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7982  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Get the x, y position of the tick label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(x, y, label, horiz, labelOptions, tickmarkOffset, index, step) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var axis = this.axis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
7997  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (!defined(yOffset)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (axis.side === 0) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else if (axis.side === 2) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// #3140, #3140
8005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { yOffset = Math.cos(label.rotation * deg2rad) * (rotCorr.y - label.getBBox(false, 0).height / 2);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
8008  
8009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x = x + labelOptions.x + rotCorr.x - (tickmarkOffset && horiz ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tickmarkOffset * transA * (reversed ? -1 : 1) : 0);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y = y + yOffset - (tickmarkOffset && !horiz ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tickmarkOffset * transA * (reversed ? 1 : -1) : 0);
8013  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Correct for staggered labels
8015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (staggerLines) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { line = (index / (step || 1) % staggerLines);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (axis.opposite) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/ staggerLines);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
8022  
8023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { return {
8024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x: x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y: Math.round(y)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
8028  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { /**
8030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return the path of the marker
8031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { getMarkPath: function(x, y, tickLength, tickWidth, horiz, renderer) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { return renderer.crispLine([
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { 'M',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { 'L',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x + (horiz ? 0 : -tickLength),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y + (horiz ? tickLength : 0)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ], tickWidth);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
8042  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {for avoiding overlapping 1 or -1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return {undefined}
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { renderGridLine: function(old, opacity, reverseCrisp) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var tick = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis = tick.axis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { options = axis.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { gridLine = tick.gridLine,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { gridLinePath,
8056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { attribs = {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { pos = tick.pos,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { type = tick.type,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tickmarkOffset = axis.tickmarkOffset,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { renderer = axis.chart.renderer;
8061  
8062  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var gridPrefix = type ? type + 'Grid' : 'grid',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { gridLineWidth = options[gridPrefix + 'LineWidth'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { gridLineColor = options[gridPrefix + 'LineColor'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { dashStyle = options[gridPrefix + 'LineDashStyle'];
8067  
8068  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (!gridLine) {
8070  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { attribs.stroke = gridLineColor;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { attribs['stroke-width'] = gridLineWidth;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (dashStyle) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { attribs.dashstyle = dashStyle;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
8076  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (!type) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { attribs.zIndex = 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (old) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { attribs.opacity = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tick.gridLine = gridLine = renderer.path()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { .attr(attribs)
8085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { .addClass(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { 'highcharts-' + (type ? type + '-' : '') + 'grid-line'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { .add(axis.gridGroup);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
8090  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // If the parameter 'old' is set, the current call will be followed
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // by another call, therefore do not do any animations this time
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (!old && gridLine) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { gridLinePath = axis.getPlotLinePath(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { pos + tickmarkOffset,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { gridLine.strokeWidth() * reverseCrisp,
8097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { old, true
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (gridLinePath) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { gridLine[tick.isNew ? 'attr' : 'animate']({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { d: gridLinePath,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { opacity: opacity
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {for avoiding overlapping 1 or -1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return {undefined}
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { renderMark: function(xy, opacity, reverseCrisp) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var tick = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis = tick.axis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { options = axis.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { renderer = axis.chart.renderer,
8122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { type = tick.type,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tickPrefix = type ? type + 'Tick' : 'tick',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tickSize = axis.tickSize(tickPrefix),
8125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { mark = tick.mark,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { isNewMark = !mark,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x = xy.x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y = xy.y;
8129  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var tickWidth = pick(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { options[tickPrefix + 'Width'], !type && axis.isXAxis ? 1 : 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ), // X axis defaults to 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tickColor = options[tickPrefix + 'Color'];
8135  
8136  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (tickSize) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // negate the length
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (axis.opposite) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tickSize[0] = -tickSize[0];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
8143  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // First time, create it
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (isNewMark) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tick.mark = mark = renderer.path()
8147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { .addClass('highcharts-' + (type ? type + '-' : '') + 'tick')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { .add(axis.axisGroup);
8149  
8150  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { mark.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { stroke: tickColor,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { 'stroke-width': tickWidth
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { });
8155  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { mark[isNewMark ? 'attr' : 'animate']({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { d: tick.getMarkPath(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tickSize[0],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { mark.strokeWidth() * reverseCrisp,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.horiz,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { renderer),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { opacity: opacity
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { });
8167  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
8170  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {in init(), so it should only
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return {undefined}
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { renderLabel: function(xy, old, opacity, index) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var tick = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis = tick.axis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { horiz = axis.horiz,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { options = axis.options,
8188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { label = tick.label,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { labelOptions = options.labels,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { step = labelOptions.step,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tickmarkOffset = axis.tickmarkOffset,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { show = true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x = xy.x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y = xy.y;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (label && isNumber(x)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { label.xy = xy = tick.getLabelPosition(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { label,
8200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { horiz,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { labelOptions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tickmarkOffset,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { index,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { step
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { );
8206  
8207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Apply show first and show last. If the tick is both first and
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // last, it is a single centered tick, in which case we show the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // label anyway (#2100).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tick.isFirst &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { !tick.isLast &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { !pick(options.showFirstLabel, 1)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ) ||
8216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tick.isLast &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { !tick.isFirst &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { !pick(options.showLastLabel, 1)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { show = false;
8223  
8224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Handle label overflow and show or hide accordingly
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else if (horiz && !axis.isRadial && !labelOptions.step &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { !labelOptions.rotation && !old && opacity !== 0) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tick.handleOverflow(xy);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
8229  
8230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // apply step
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (step && index % step) {
8232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // show those indices dividable by step
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { show = false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
8235  
8236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Set the new position, and show or hide
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (show && isNumber(xy.y)) {
8238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { xy.opacity = opacity;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { label[tick.isNew ? 'attr' : 'animate'](xy);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { label.attr('y', -9999); // #1338
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tick.isNew = false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
8246  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {in place
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {new
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { render: function(index, old, opacity) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var tick = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis = tick.axis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { horiz = axis.horiz,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { pos = tick.pos,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tickmarkOffset = axis.tickmarkOffset,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { xy = tick.getPosition(horiz, pos, tickmarkOffset, old),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { x = xy.x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { y = xy.y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { reverseCrisp = ((horiz && x === axis.pos + axis.len) ||
8264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { (!horiz && y === axis.pos)) ? -1 : 1; // #1480, #1687
8265  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { opacity = pick(opacity, 1);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this.isActive = true;
8268  
8269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Create the grid line
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this.renderGridLine(old, opacity, reverseCrisp);
8271  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // create the tick mark
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this.renderMark(xy, opacity, reverseCrisp);
8274  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // the label is created on init - now move it into place
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { this.renderLabel(xy, old, opacity, index);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {for the tick prototype
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { destroy: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { destroyObjectProperties(this, this.axis);
8284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { };
8286  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var arrayMax = H.arrayMax,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * The object wrapper for plot lines and plot bands
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Object} options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(axis, options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.axis = axis;
8308  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.options = options;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.id = options.id;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8314  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8316  
8317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
8318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Render the plot line or plot band. If it is already existing,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * move it.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var plotLine = this,
8323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'class': 'highcharts-plot-' + (isBand ? 'band ' : 'line ') + (options.className || '')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'bands' : 'lines',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8349  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// logarithmic conversion
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (axis.isLog) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8356  
8357  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Set the presentational attributes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (isLine) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'stroke-width': options.width
8363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (options.dashStyle) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8367  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else if (isBand) { // plot band
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (color) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (options.borderWidth) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'stroke-width'] = options.borderWidth;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8377  
8378  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Grouping and zIndex
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { groupAttribs.zIndex = zIndex;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'-' + zIndex;
8382  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (!group) {
8385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'plot-' + groupName)
8386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8388  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Create the path
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (isNew) {
8391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8396  
8397  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Set the path or return
8399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (isLine) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else if (isBand) { // plot band
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { path = axis.getPlotBandPath(from, to, options);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return;
8405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8406  
8407  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// common for lines and bands
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (isNew && path && path.length) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8413  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// events
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (events) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(eventType) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(e) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {for (eventType in events) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else if (svgElem) {
8426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (path) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (label) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8438  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// the plot band/line label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (optionsLabel && defined(optionsLabel.text) && path && path.length &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// apply defaults
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { optionsLabel = merge({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'center',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'middle',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8450  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.renderLabel(optionsLabel, path, isBand, zIndex);
8452  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else if (label) { // move out of sight
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { label.hide();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8456  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// chainable
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { return plotLine;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8460  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
8462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Render and align label for plot line or band.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(optionsLabel, path, isBand, zIndex) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var plotLine = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8473  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// add the SVG element
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (!label) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'class': 'highcharts-plot-' + (isBand ? 'band' : 'line') + '-label ' + (optionsLabel.className || '')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8481  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8483  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8492  
8493  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8495  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8497  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// get the bounding box and align the label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // #3000 changed to better handle choice between plotband or plotline
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { xs = [path[1], path[4], (isBand ? path[6] : path[1])];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {false, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8513  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Remove the plot line or band
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// remove it from the lookup
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { erase(this.axis.plotLinesAndBands, this);
8520  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.axis;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this);
8523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8525  
8526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Object with members for extending the Axis prototype
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @todo Extend directly instead of adding object to Highcharts first
8529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
8530  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Create the path for a plot band
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
8536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(from, to) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var toPath = this.getPlotLinePath(to, null, null, true),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.getPlotLinePath(from, null, null, true),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// #4964 check if chart is inverted or plotband is on yAxis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { horiz = this.horiz,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.min && to < this.min) ||
8544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.max && to > this.max);
8545  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (path && toPath) {
8547  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Flat paths don't need labels (#3836)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (outside) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8553  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Add 1 pixel, when coordinates are the same
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { path.push(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else { // outside the axis area
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { path = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8562  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return path;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8565  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return this.addPlotBandOrLine(options, 'plotBands');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8569  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return this.addPlotBandOrLine(options, 'plotLines');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8573  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Add a plot band or plot line after render time
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param options {Object} The plotBand or plotLine configuration object
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(options, coll) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var obj = new H.PlotLineOrBand(this, options).render(),
8581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.userOptions;
8582  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (obj) { // #2189
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Add it to the user options for exporting and Axis.update
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (coll) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.plotLinesAndBands.push(obj);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8591  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return obj;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8594  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Remove a plot band or plot line from the chart by id
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Object} id
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(id) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var plotLinesAndBands = this.plotLinesAndBands,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.userOptions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {while (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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (plotLinesAndBands[i].id === id) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(arr) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {while (i--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (arr[i].id === id) {
8613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8619  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
8627  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var addEvent = H.addEvent,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8657  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Create a new axis object.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @constructor Axis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Object} chart
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Object} options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.init.apply(this, arguments);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8667  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8669  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Default options for the X axis - the Y axis has extended defaults
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// allowDecimals: null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // alternateGridColor: null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // categories: [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { dateTimeLabelFormats: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'%H:%M:%S.%L',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'%H:%M:%S',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'%H:%M',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'%H:%M',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'%e. %b',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'%e. %b',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'%b \'%y',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'%Y'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// reversed: false,
8689  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// rotation: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // align: 'center',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // step: null,
8695  
8696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'#666666',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'default',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'11px'
8700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8701  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {//y: undefined
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { /*formatter: function () {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { return this.value;
8706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },*/
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {//linkedTo: 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //max: undefined,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //min: undefined,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { minPadding: 0.01,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {//minRange: null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //minorTickInterval: null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { minorTickLength: 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'outside', // inside or outside
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //opposite: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //offset: 0,
8719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //plotBands: [{
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // events: {},
8721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // zIndex: 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // labels: { align, x, verticalAlign, y, style, rotation, textAlign }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //}],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //plotLines: [{
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // events: {}
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // dashStyle: {}
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // zIndex:
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // labels: { align, x, verticalAlign, y, style, rotation, textAlign }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //}],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //reversed: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // showFirstLabel: 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // showLastLabel: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { startOfWeek: 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {//tickInterval: null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tickLength: 10,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'between', // on or between
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tickPixelInterval: 100,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'outside',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {//text: null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { align: 'middle', // low, middle or high
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //margin: 0 for horizontal, 10 for vertical axes,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //rotation: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //side: 'outside',
8746  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'#666666'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8750  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {//x: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //y: 0
8753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'linear', // linear, logarithmic or datetime
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //visible: true
8756  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'#f2f2f2',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// minorGridLineDashStyle: null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { minorGridLineWidth: 1,
8760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'#999999',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {//minorTickWidth: 0,
8762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { lineColor: '#ccd6eb',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'#e6e6e6',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// gridLineDashStyle: 'solid',
8766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // gridLineWidth: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tickColor: '#ccd6eb'
8768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// tickWidth: 1
8769  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8771  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * This options set extends the defaultOptions for Y axes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'Values'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {//align: dynamic,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //y: dynamic,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //x: dynamic,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //verticalAlign: dynamic,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //textAlign: dynamic,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //rotation: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { formatter: function() {
8798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return H.numberFormat(this.total, -1);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8800  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'11px',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'bold',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'#000000',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'1px contrast'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8807  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8809  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// tickWidth: 0
8813  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8815  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * These options extend the defaultOptions for left 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8827  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * These options extend the defaultOptions for right axes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * These options extend the defaultOptions for bottom axes
8842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// overflow: undefined,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // staggerLines: null
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * These options extend the defaultOptions for top axes
8856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// overflow: undefined
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // staggerLines: null
8863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8868  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
8870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Initialize the axis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(chart, userOptions) {
8873  
8874  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var isXAxis = userOptions.isX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8879  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Flag, is the axis horizontal
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.horiz = chart.inverted ? !isXAxis : isXAxis;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Flag, isXAxis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.isXAxis = isXAxis;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'xAxis' : 'yAxis');
8886  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// needed in setOptions
8888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.side = userOptions.side || (axis.horiz ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// top : bottom
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { (axis.opposite ? 1 : 3)); // right : left
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8893  
8894  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var options = this.options,
8896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'datetime';
8898  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// can be overwritten by dynamic format
8900  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Flag, stagger lines or not
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.userOptions = userOptions;
8904  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {//axis.axisTitleMargin = undefined,// = options.title.margin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.minPixelPadding = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {false;
8910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {false;
8911  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Initial categories
8913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.hasNames = type === 'category' || options.categories === true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Preserve on update (#3830)
8916  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Elements
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.axisGroup = 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.gridGroup = 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.axisTitle = 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.axisLine = undefined;
8922  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Placeholder for plotlines and plotbands groups
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.plotLinesAndBandsGroups = {};
8925  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Shorthand types
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.isLog = type === 'logarithmic';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8930  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Flag, if axis is linked to another axis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.isLinked = defined(options.linkedTo);
8933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Linked axis.
8934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.linkedParent = undefined;
8935  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Tick positions
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.tickPositions = undefined; // array containing predefined positions
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Tick intervals
8939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.tickInterval = undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.minorTickInterval = undefined;
8941  
8942  
8943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Major ticks
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.ticks = {};
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Minor ticks
8947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.minorTicks = {};
8948  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// List of plotLines/Bands
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.plotLinesAndBands = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Alternate bands
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.alternateBands = {};
8954  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Axis metrics
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.left = undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.top = undefined;
8958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.width = undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.height = undefined;
8960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.bottom = undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.right = undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.transA = undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.transB = undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.oldTransA = undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.len = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {//axis.oldMin = undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.oldMax = undefined;
8968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.oldUserMin = undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.oldUserMax = undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.oldAxisLength = undefined;
8971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.minRange = axis.userMinRange = options.minRange || options.maxZoom;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8974  
8975  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Dictionary for stacks
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.stacks = {};
8978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8980  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Min and max in the data
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.dataMin = undefined,
8983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.dataMax = undefined,
8984  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// The axis range
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.max = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {null;
8988  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// User set min and max
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.userMin = undefined,
8991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { //axis.userMax = undefined,
8992  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Crosshair 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.crosshair = pick(options.crosshair, splat(chart.options.tooltip.crosshairs)[isXAxis ? 0 : 1], false);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Run Axis
8996  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var eventType,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
8999  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Register
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (inArray(axis, chart.axes) === -1) { // don't add it again on Axis.update()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (isXAxis) { // #2713
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { chart.axes.splice(chart.xAxis.length, 0, axis);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9007  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// populated by Series
9012  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// inverted charts have reversed xAxes as default
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (chart.inverted && isXAxis && axis.reversed === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9017  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9020  
9021  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// register event listeners
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { for (eventType in events) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9026  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// extend logarithmic axis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.lin2log = options.linearToLogConverter || axis.lin2log;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (axis.isLog) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9034  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Merge and set options
9037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(userOptions) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.options = merge(
9040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.defaultOptions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.coll === 'yAxis' && this.defaultYAxisOptions, [this.defaultTopAxisOptions, this.defaultRightAxisOptions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.defaultBottomAxisOptions, this.defaultLeftAxisOptions
9043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.side],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.coll], // if set in setOptions (#1053)
9046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { userOptions
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9050  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * The default label formatter. The context is a special config object for the label.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var axis = this.axis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.value,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this.dateTimeLabelFormat,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9066  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// make sure the same symbol is added for all labels on a linear axis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { numericSymbolDetector = axis.isLog ? Math.abs(value) : axis.tickInterval;
9069  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (formatOption) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {this);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else if (categories) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else if (dateTimeLabelFormat) { // datetime axis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ret = H.dateFormat(dateTimeLabelFormat, value);
9078  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else if (i && numericSymbolDetector >= 1000) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Decide whether we should add a numeric symbol like k (thousands) or M (millions).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // If we are to enable this in tooltip or other places as well, we can move this
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // logic to the numberFormatter and enable it by a parameter.
9083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { while (i-- && ret === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {Math.pow(numSymMagnitude, i + 1);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (numericSymbolDetector >= multi && (value * 10) % multi === 0 && numericSymbols[i] !== null && value !== 0) { // #5480
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ret = H.numberFormat(value / multi, -1) + numericSymbols[i];
9087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
9090  
9091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (ret === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (Math.abs(value) >= 10000) { // add thousands separators
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ret = H.numberFormat(value, -1);
9094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else { // small numbers
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ret = H.numberFormat(value, -1, undefined, ''); // #2466
9096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
9098  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { return ret;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
9101  
9102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {for the series of each axis
9104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { getSeriesExtremes: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { chart = axis.chart;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.hasVisibleSeries = false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Reset properties in case we're redrawing (#3353)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.dataMin = axis.dataMax = axis.threshold = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.softThreshold = !axis.isXAxis;
9113  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (axis.buildStacks) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.buildStacks();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
9117  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // loop through this axis' series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { each(axis.series, function(series) {
9120  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (series.visible || !chart.options.chart.ignoreHiddenSeries) {
9122  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var seriesOptions = series.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { xData,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { threshold = seriesOptions.threshold,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { seriesDataMin,
9127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { seriesDataMax;
9128  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.hasVisibleSeries = true;
9130  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Validate threshold in logarithmic axes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (axis.positiveValuesOnly && threshold <= 0) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {<= 0) { threshold = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {<= 0) { }
9135  
9136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {<= 0) { // Get dataMin and dataMax for X axes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (axis.isXAxis) {
9138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { xData = series.xData;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (xData.length) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // If xData contains values which is not numbers, then filter them out.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // To prevent performance hit, we only do this after we have already
9142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // found seriesDataMin because in most cases all data is valid. #5234.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { seriesDataMin = arrayMin(xData);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (!isNumber(seriesDataMin) && !(seriesDataMin instanceof Date)) { // Date for #5010
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { xData = grep(xData, function(x) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { return isNumber(x);
9147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { seriesDataMin = arrayMin(xData); // Do it again with valid data
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
9150  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.dataMin = Math.min(pick(axis.dataMin, xData[0]), seriesDataMin);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.dataMax = Math.max(pick(axis.dataMax, xData[0]), arrayMax(xData));
9153  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
9155  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Get dataMin and dataMax for Y axes, as well as handle stacking and processed data
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else {
9158  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Get this particular series extremes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { series.getExtremes();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { seriesDataMax = series.dataMax;
9162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { seriesDataMin = series.dataMin;
9163  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Get the dataMin and dataMax so far. If percentage is used, the min and max are
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // always 0 and 100. If seriesDataMin and seriesDataMax is null, then series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // doesn't have active y data, we continue with nulls
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (defined(seriesDataMin) && defined(seriesDataMax)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.dataMin = Math.min(pick(axis.dataMin, seriesDataMin), seriesDataMin);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.dataMax = Math.max(pick(axis.dataMax, seriesDataMax), seriesDataMax);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
9171  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Adjust to threshold
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (defined(threshold)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.threshold = threshold;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // If any series has a hard threshold, it takes precedence
9177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (!seriesOptions.softThreshold || axis.positiveValuesOnly) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.softThreshold = false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
9184  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { translate: function(val, backwards, cvsCoord, old, handleLog, pointPlacement) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var axis = this.linkedParent || this, // #1417
9191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { sign = 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { cvsOffset = 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { localA = old ? axis.oldTransA : 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { localMin = old ? axis.oldMin : axis.min,
9195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { returnValue,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { minPixelPadding = axis.minPixelPadding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { doPostTranslate = (axis.isOrdinal || axis.isBroken || (axis.isLog && handleLog)) && axis.lin2val;
9198  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (!localA) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { localA = axis.transA;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // In vertical axes, the canvas coordinates start from 0 at the top like in
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // SVG.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (cvsCoord) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { sign *= -1; // canvas coordinates inverts the value
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { cvsOffset = axis.len;
9208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
9209  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Handle reversed axis
9211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (axis.reversed) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { sign *= -1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { cvsOffset -= sign * (axis.sector || axis.len);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
9215  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // From pixels to value
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (backwards) { // reverse translation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { val = val * sign + cvsOffset;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { val -= minPixelPadding;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { returnValue = val / localA + localMin; // from chart pixel to value
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (doPostTranslate) { // log and ordinal axes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { returnValue = axis.lin2val(returnValue);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9225  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// From value to pixels
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else {
9228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (doPostTranslate) { // log and ordinal axes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { val = axis.val2lin(val);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9235  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return returnValue;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9238  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Utility method to translate an axis value to pixel position.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Number} value A value in terms of axis units
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Boolean} paneCoordinates Whether to return the pixel coordinate relative to the chart
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * or just the axis/pane itself.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(value, paneCoordinates) {
9246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return this.translate(value, false, !this.horiz, null, true) + (paneCoordinates ? 0 : this.pos);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9248  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Utility method to translate a pixel position in to an axis value.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Number} pixel 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Boolean} paneCoordiantes Whether the input pixel is relative to the chart or just the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * axis/pane itself.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(pixel, paneCoordinates) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return this.translate(pixel - (paneCoordinates ? 0 : this.pos), true, !this.horiz, null, true);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9258  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Create the path for a plot line that goes from the given value on
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * this axis, across the plot to the opposite side
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Number} value
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Number} lineWidth Used for calculation crisp line
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * @param {Number] old Use old coordinates (for resizing and rescaling)
9265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(value, lineWidth, old, force, translatedValue) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Check if x is between a and b. If not, either move to a/b or skip,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * depending on the force parameter.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(x, a, b) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (x < a || x > b) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (force) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {Math.min(Math.max(a, x), b);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return x;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9293  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {null, null, old));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {Math.round(translatedValue + transB);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {Math.round(cHeight - translatedValue - transB);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {if (!isNumber(translatedValue)) { // no min or max
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { skip = true;
9299  
9300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else if (axis.horiz) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return skip && !force ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {null :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {'M', x1, y1, 'L', x2, y2], lineWidth || 1);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9313  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Set the tick positions of a linear axis to round values like whole tens or every five.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function(tickInterval, min, max) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var pos,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {Math.floor(min / tickInterval) * tickInterval),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { roundedMax = correctFloat(Math.ceil(max / tickInterval) * tickInterval),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9323  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// For single points, add a tick regardless of the relative position
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // (#2662, #6274)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (this.single) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return [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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9329  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Populate the intermediate values
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { pos = roundedMin;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {while (pos <= roundedMax) {
9333  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Place the tick on the rounded value
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { tickPositions.push(pos);
9336  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Always add the raw tickInterval, not the corrected one.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { pos = correctFloat(pos + tickInterval);
9339  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// If the interval is not big enough in the current min - max range to actually increase
9341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // the loop variable, we need to break out to prevent endless loop. Issue #619
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (pos === lastPos) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {break;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9345  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// Record the last value
9347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { lastPos = pos;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {return tickPositions;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {/**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Return the minor tick positions. For logarithmic axes, reuse the same logic
9354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * as for major ticks.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {function() {
9357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
9363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {// #1498
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { max = axis.max + pointRangePadding, // #1498
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { range = max - min;
9367  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
9369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (range && range / minorTickInterval < axis.len / 3) { // #3875
9370  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (axis.isLog) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // For each interval in the major ticks, compute the minor 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // separately.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { each(this.paddedTicks, function(pos, i, paddedTicks) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (i) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { minorTickPositions.push.apply(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { minorTickPositions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.getLogTickPositions(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { minorTickInterval,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { paddedTicks[i - 1],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { paddedTicks[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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { true
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { );
9385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { });
9387  
9388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else if (axis.isDatetimeAxis && options.minorTickInterval === 'auto') { // #1314
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { minorTickPositions = minorTickPositions.concat(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.getTimeTicks(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.normalizeTimeTickInterval(minorTickInterval),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { min,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { max,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { options.startOfWeek
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { for (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { pos = min + (tickPositions[0] - min) % minorTickInterval; pos <= max; pos += minorTickInterval
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { ) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Very, very, tight grid lines (#5771)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (pos === minorTickPositions[0]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { break;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
9405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { minorTickPositions.push(pos);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
9409  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (minorTickPositions.length !== 0) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.trimTicks(minorTickPositions); // #3652 #3743 #1498 #6330
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { return minorTickPositions;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { },
9415  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * Adjust the min and max for the minimum range. Keep in mind that the series data is
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * not yet processed, so we don't have information on data cropping and grouping, or
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * updated axis.pointRange or series.pointRange. The data can't be processed until
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { * we have finally established min and max.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { adjustForMinRange: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { options = axis.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { min = axis.min,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { max = axis.max,
9427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { zoomOffset,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { spaceAvailable = axis.dataMax - axis.dataMin >= axis.minRange,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { closestDataRange,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { distance,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { xData,
9433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { loopLength,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { minArgs,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { maxArgs,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { minRange;
9437  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Set the automatic minimum range based on the closest point distance
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (axis.isXAxis && axis.minRange === undefined && !axis.isLog) {
9440  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (defined(options.min) || defined(options.max)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.minRange = null; // don't do this again
9443  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { } else {
9445  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // Find the closest distance between raw data points, as opposed to
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // closestPointRange that applies to processed points (cropped and grouped)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { each(axis.series, function(series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { xData = series.xData;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { loopLength = series.xIncrement ? 1 : xData.length - 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { for (i = loopLength; i > 0; i--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { distance = xData[i] - xData[i - 1];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (closestDataRange === undefined || distance < closestDataRange) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { closestDataRange = distance;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
9457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { axis.minRange = Math.min(closestDataRange * 5, axis.dataMax - axis.dataMin);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
9460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
9461  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // if minRange is exceeded, adjust
9463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (max - min < axis.minRange) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { minRange = axis.minRange;
9465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { zoomOffset = (minRange - max + min) / 2;
9466  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // if min and max options have been set, don't go beyond it
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { minArgs = [min - zoomOffset, pick(options.min, min - zoomOffset)];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (spaceAvailable) { // if space is available, stay within the data range
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { minArgs[2] = axis.isLog ? axis.log2lin(axis.dataMin) : axis.dataMin;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { min = arrayMax(minArgs);
9473  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { maxArgs = [min + minRange, pick(options.max, min + minRange)];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (spaceAvailable) { // if space is availabe, stay within the data range
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { maxArgs[2] = axis.isLog ? axis.log2lin(axis.dataMax) : axis.dataMax;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { }
9478  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { max = arrayMin(maxArgs);
9480  
9481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { // now if the max is adjusted, adjust the min back
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) { if (max - min < minRange) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { minArgs[0] = max - minRange;
9484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { minArgs[1] = pick(options.min, max - minRange);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { min = arrayMax(minArgs);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Record modified extremes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.min = min;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.max = max;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { },
9493  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { /**
9495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { * Find the closestPointRange across all series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { getClosest: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { var ret;
9499  
9500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (this.categories) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { ret = 1;
9502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { each(this.series, function(series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { var seriesClosest = series.closestPointRange,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { visible = series.visible ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { !series.chart.options.chart.ignoreHiddenSeries;
9507  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!series.noSharedTooltip &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { defined(seriesClosest) &&
9510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { visible
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { ) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { ret = defined(ret) ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { Math.min(ret, seriesClosest) :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { seriesClosest;
9515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { return ret;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { },
9520  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { * When a point name is given and no x, search for the name in the existing categories,
9523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { * or if categories aren't provided, search names or create a new category (#2522).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { nameToX: function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { var explicitCategories = isArray(this.categories),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { names = explicitCategories ? this.categories : this.names,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { nameX = point.options.x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { x;
9530  
9531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { point.series.requireSorting = false;
9532  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!defined(nameX)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { nameX = this.options.uniqueNames === false ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { point.series.autoIncrement() :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { inArray(point.name, names);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (nameX === -1) { // The name is not found in currenct categories
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!explicitCategories) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { x = names.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { x = nameX;
9544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9545  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Write the last point's name to the names array
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (x !== undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.names[x] = point.name;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9550  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { return x;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { },
9553  
9554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { * When changes have been done to series data, update the axis.names.
9556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { updateNames: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { var axis = this;
9559  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (this.names.length > 0) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.names.length = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.minRange = undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { each(this.series || [], function(series) {
9564  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Reset incrementer (#5928)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { series.xIncrement = null;
9567  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // When adding a series, points are not yet generated
9569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!series.points || series.isDirtyData) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { series.processData();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { series.generatePoints();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9573  
9574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { each(series.points, function(point, i) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { var 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (point.options) {
9577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { x = axis.nameToX(point);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (x !== undefined && x !== point.x) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { point.x = x;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { series.xData[i] = x;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { },
9587  
9588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { * Update translation information
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { */
9591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { setAxisTranslation: function(saveOld) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { range = axis.max - axis.min,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { pointRange = axis.axisPointRange || 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { closestPointRange,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { minPointOffset = 0,
9597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { pointRangePadding = 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { linkedParent = axis.linkedParent,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { ordinalCorrection,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { hasCategories = !!axis.categories,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { transA = axis.transA,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { isXAxis = axis.isXAxis;
9603  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Adjust translation for padding. Y axis with categories need to go through the same (#1784).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (isXAxis || hasCategories || pointRange) {
9606  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Get the closest points
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { closestPointRange = axis.getClosest();
9609  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (linkedParent) {
9611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { minPointOffset = linkedParent.minPointOffset;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { pointRangePadding = linkedParent.pointRangePadding;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { each(axis.series, function(series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { var seriesPointRange = hasCategories ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { 1 :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { (isXAxis ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { pick(series.options.pointRange, closestPointRange, 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { (axis.axisPointRange || 0)), // #2806
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { pointPlacement = series.options.pointPlacement;
9621  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { pointRange = Math.max(pointRange, seriesPointRange);
9623  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!axis.single) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // minPointOffset is the value padding to the left of the axis in order to make
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // room for points with a pointRange, typically columns. When the pointPlacement option
9627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // is 'between' or 'on', this padding does not apply.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { minPointOffset = Math.max(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { minPointOffset,
9630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { isString(pointPlacement) ? 0 : seriesPointRange / 2
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { );
9632  
9633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Determine the total padding needed to the length of the axis to make room for the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // pointRange. If the series' pointPlacement is 'on', no padding is added.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { pointRangePadding = Math.max(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { pointPlacement === 'on' ? 0 : seriesPointRange
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9642  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Record minPointOffset and pointRangePadding
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { ordinalCorrection = axis.ordinalSlope && closestPointRange ? axis.ordinalSlope / closestPointRange : 1; // #988, #1853
9645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.minPointOffset = minPointOffset = minPointOffset * ordinalCorrection;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.pointRangePadding = pointRangePadding = pointRangePadding * ordinalCorrection;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // pointRange means the width reserved for each point, like in a column chart
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.pointRange = Math.min(pointRange, range);
9650  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // closestPointRange means the closest distance between points. In columns
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // it is mostly equal to pointRange, but in lines pointRange is 0 while closestPointRange
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // is some other value
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (isXAxis) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.closestPointRange = closestPointRange;
9656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9658  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Secondary values
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (saveOld) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.oldTransA = transA;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.translationSlope = axis.transA = transA =
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.options.staticScale ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.len / ((range + pointRangePadding) || 1);
9666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.transB = axis.horiz ? axis.left : axis.bottom; // translation addend
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.minPixelPadding = transA * minPointOffset;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { },
9669  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { minFromRange: function() {
9671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { return this.max - this.range;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { },
9673  
9674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { * Set the tick positions to round values and optionally extend the extremes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { * to the nearest tick
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { setTickInterval: function(secondPass) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { chart = axis.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { options = axis.options,
9682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { isLog = axis.isLog,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { log2lin = axis.log2lin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { isDatetimeAxis = axis.isDatetimeAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { isXAxis = axis.isXAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { isLinked = axis.isLinked,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { maxPadding = options.maxPadding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { minPadding = options.minPadding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { length,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { linkedParentExtremes,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { tickIntervalOption = options.tickInterval,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { minTickInterval,
9693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { tickPixelIntervalOption = options.tickPixelInterval,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { categories = axis.categories,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { threshold = axis.threshold,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { softThreshold = axis.softThreshold,
9697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { thresholdMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { thresholdMax,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { hardMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { hardMax;
9701  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!isDatetimeAxis && !categories && !isLinked) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.getTickAmount();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9705  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Min or max set either by zooming/setExtremes or initial options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { hardMin = pick(axis.userMin, options.min);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { hardMax = pick(axis.userMax, options.max);
9709  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Linked axis gets the extremes from the parent axis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (isLinked) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.linkedParent = chart[axis.coll][options.linkedTo];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { linkedParentExtremes = axis.linkedParent.getExtremes();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.min = pick(linkedParentExtremes.min, linkedParentExtremes.dataMin);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.max = pick(linkedParentExtremes.max, linkedParentExtremes.dataMax);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (options.type !== axis.linkedParent.options.type) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { H.error(11, 1); // Can't link axes of different type
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9719  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Initial min and max from the extreme data values
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { } else {
9722  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Adjust to hard threshold
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!softThreshold && defined(threshold)) {
9725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (axis.dataMin >= threshold) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { thresholdMin = threshold;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { minPadding = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { } else if (axis.dataMax <= threshold) {
9729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { thresholdMax = threshold;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { maxPadding = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.min = pick(hardMin, thresholdMin, axis.dataMin);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.max = pick(hardMax, thresholdMax, axis.dataMax);
9736  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9738  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (isLog) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.positiveValuesOnly &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { !secondPass &&
9743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { Math.min(axis.min, pick(axis.dataMin, axis.min)) <= 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { ) { // #978
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { H.error(10, 1); // Can't plot negative values on log axis
9746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // The correctFloat cures #934, float errors on full tens. But it
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // was too aggressive for #4360 because of conversion back to lin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // therefore use precision 15.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.min = correctFloat(log2lin(axis.min), 15);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.max = correctFloat(log2lin(axis.max), 15);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9753  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // handle zoomed range
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (axis.range && defined(axis.max)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.userMin = axis.min = hardMin = Math.max(axis.min, axis.minFromRange()); // #618
9757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.userMax = hardMax = axis.max;
9758  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.range = null; // don't use it when running setExtremes
9760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9761  
9762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Hook for Highstock Scroller. Consider combining with beforePadding.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { fireEvent(axis, 'foundExtremes');
9764  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Hook for adjusting this.min and this.max. Used by bubble series.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (axis.beforePadding) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.beforePadding();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9769  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // adjust min and max for the minimum range
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.adjustForMinRange();
9772  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Pad the values to get clear of the chart's edges. To avoid tickInterval taking the padding
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // into account, we do this after computing tick interval (#1337).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!categories && !axis.axisPointRange && !axis.usePercentage && !isLinked && defined(axis.min) && defined(axis.max)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { length = axis.max - axis.min;
9777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (length) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!defined(hardMin) && minPadding) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.min -= length * minPadding;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!defined(hardMax) && maxPadding) {
9782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.max += length * maxPadding;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9786  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Handle options for floor, ceiling, softMin and softMax (#6359)
9788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (isNumber(options.softMin)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.min = Math.min(axis.min, options.softMin);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (isNumber(options.softMax)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.max = Math.max(axis.max, options.softMax);
9793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (isNumber(options.floor)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.min = Math.max(axis.min, options.floor);
9796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (isNumber(options.ceiling)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.max = Math.min(axis.max, options.ceiling);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9800  
9801  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // When the threshold is soft, adjust the extreme value only if
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // the data extreme and the padded extreme land on either side of the threshold. For example,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // a series of [0, 1, 2, 3] would make the yAxis add a tick for -1 because of the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // default minPadding and startOnTick options. This is prevented by the softThreshold
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // option.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (softThreshold && defined(axis.dataMin)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { threshold = threshold || 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!defined(hardMin) && axis.min < threshold && axis.dataMin >= threshold) {
9810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.min = threshold;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { } else if (!defined(hardMax) && axis.max > threshold && axis.dataMax <= threshold) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.max = threshold;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9815  
9816  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // get tickInterval
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (axis.min === axis.max || axis.min === undefined || axis.max === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.tickInterval = 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { } else if (isLinked && !tickIntervalOption &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { tickPixelIntervalOption === axis.linkedParent.options.tickPixelInterval) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.tickInterval = tickIntervalOption = axis.linkedParent.tickInterval;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { } else {
9824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.tickInterval = pick(
9825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { tickIntervalOption,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.tickAmount ? ((axis.max - axis.min) / Math.max(this.tickAmount - 1, 1)) : undefined,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { categories ? // for categoried axis, 1 is default, for linear axis use tickPix
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { 1 :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // don't let it be more than the data range
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { (axis.max - axis.min) * tickPixelIntervalOption / Math.max(axis.len, tickPixelIntervalOption)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9833  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Now we're finished detecting min and max, crop and group series data. This
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // is in turn needed in order to find tick positions in ordinal axes.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (isXAxis && !secondPass) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { each(axis.series, function(series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { series.processData(axis.min !== axis.oldMin || axis.max !== axis.oldMax);
9839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { });
9840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9841  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // set the translation factor used in translate function
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.setAxisTranslation(true);
9844  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // hook for ordinal axes and radial axes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (axis.beforeSetTickPositions) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.beforeSetTickPositions();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9849  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // hook for extensions, used in Highstock ordinal axes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (axis.postProcessTickInterval) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.tickInterval = axis.postProcessTickInterval(axis.tickInterval);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9854  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // In column-like charts, don't cramp in more ticks than there are points (#1943, #4184)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (axis.pointRange && !tickIntervalOption) {
9857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.tickInterval = Math.max(axis.pointRange, axis.tickInterval);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9859  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Before normalizing the tick interval, handle minimum tick interval. This applies only if tickInterval is not defined.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { minTickInterval = pick(options.minTickInterval, axis.isDatetimeAxis && axis.closestPointRange);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!tickIntervalOption && axis.tickInterval < minTickInterval) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.tickInterval = minTickInterval;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // for linear axes, get magnitude and normalize the interval
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!isDatetimeAxis && !isLog && !tickIntervalOption) {
9868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.tickInterval = normalizeTickInterval(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.tickInterval,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { getMagnitude(axis.tickInterval),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // If the tick interval is between 0.5 and 5 and the axis max is in the order of
9873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // thousands, chances are we are dealing with years. Don't allow decimals. #3363.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { pick(options.allowDecimals, !(axis.tickInterval > 0.5 && axis.tickInterval < 5 && axis.max > 1000 && axis.max < 9999)), !!this.tickAmount
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9877  
9878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Prevent ticks from getting so close that we can't draw the labels
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!this.tickAmount) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { axis.tickInterval = axis.unsquish();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9882  
9883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.setTickPositions();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { },
9885  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { * Now we have computed the normalized tickInterval, get the tick positions
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { */
9889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { setTickPositions: function() {
9890  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { var options = this.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { tickPositions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { tickPositionsOption = options.tickPositions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { tickPositioner = options.tickPositioner,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { startOnTick = options.startOnTick,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { endOnTick = options.endOnTick;
9897  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Set the tickmarkOffset
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.tickmarkOffset = (this.categories && options.tickmarkPlacement === 'between' &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.tickInterval === 1) ? 0.5 : 0; // #3202
9901  
9902  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // get minorTickInterval
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.minorTickInterval = options.minorTickInterval === 'auto' && this.tickInterval ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.tickInterval / 5 : options.minorTickInterval;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // When there is only one point, or all points have the same value on
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // this axis, then min and max are equal and tickPositions.length is 0
9909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // or 1. In this case, add some padding in order to center the point,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // but leave it with one tick. #1337.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.single = this.min === this.max && defined(this.min) &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { !this.tickAmount && options.allowDecimals !== false;
9913  
9914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Find the tick positions
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.tickPositions = tickPositions = tickPositionsOption && tickPositionsOption.slice(); // Work on a copy (#1565)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!tickPositions) {
9917  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (this.isDatetimeAxis) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { tickPositions = this.getTimeTicks(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.normalizeTimeTickInterval(this.tickInterval, options.units),
9921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.min,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.max,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { options.startOfWeek,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.ordinalPositions,
9925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.closestPointRange,
9926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { true
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { } else if (this.isLog) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { tickPositions = this.getLogTickPositions(this.tickInterval, this.min, this.max);
9930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { tickPositions = this.getLinearTickPositions(this.tickInterval, this.min, this.max);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9933  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Too dense ticks, keep only the first and last (#4477)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (tickPositions.length > this.len) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { tickPositions = [tickPositions[0], tickPositions.pop()];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9938  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.tickPositions = tickPositions;
9940  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Run the tick positioner callback, that allows modifying auto tick positions.
9942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (tickPositioner) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { tickPositioner = tickPositioner.apply(this, [this.min, this.max]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (tickPositioner) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.tickPositions = tickPositions = tickPositioner;
9946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9948  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Reset min/max or remove extremes based on start/end on tick
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.paddedTicks = tickPositions.slice(0); // Used for logarithmic minor
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.trimTicks(tickPositions, startOnTick, endOnTick);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!this.isLinked) {
9955  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { // Substract half a unit (#2619, #2846, #2515, #3390)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (this.single) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.min -= 0.5;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.max += 0.5;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!tickPositionsOption && !tickPositioner) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.adjustTickAmount();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { },
9966  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { * Handle startOnTick and endOnTick by either adapting to padding min/max or rounded min/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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { trimTicks: function(tickPositions, startOnTick, endOnTick) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { var roundedMin = tickPositions[0],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { roundedMax = tickPositions[tickPositions.length - 1],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { minPointOffset = this.minPointOffset || 0;
9974  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (!this.isLinked) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (startOnTick && roundedMin !== -Infinity) { // #6502
9977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.min = roundedMin;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { while (this.min - minPointOffset > tickPositions[0]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { tickPositions.shift();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { }
9983  
9984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { if (endOnTick) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { this.max = roundedMax;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) { while (this.max + minPointOffset < tickPositions[tickPositions.length - 1]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { tickPositions.pop();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
9991  
9992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { // If no tick are left, set one tick in the middle (#3195)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { if (tickPositions.length === 0 && defined(roundedMin)) {
9994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { tickPositions.push((roundedMax + roundedMin) / 2);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { },
9998  
9999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { * Check if there are multiple axes in the same pane
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { * @returns {Boolean} There are other axes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { alignToOthers: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { var others = {}, // Whether there is another axis to pair with this one
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { hasOther,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { options = this.options;
10007  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { if (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { // Only if alignTicks is true
10010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { this.chart.options.chart.alignTicks !== false &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { options.alignTicks !== false &&
10012  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { // Don't try to align ticks on a log axis, they are not evenly
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { // spaced (#6021)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { !this.isLog
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { each(this.chart[this.coll], function(axis) {
10018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { var otherOptions = axis.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { horiz = axis.horiz,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { key = [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { horiz ? otherOptions.left : otherOptions.top,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { otherOptions.width,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { otherOptions.height,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { otherOptions.pane
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { ].join(',');
10026  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { if (axis.series.length) { // #4442
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { if (others[key]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { hasOther = true; // #4201
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { others[key] = 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
10035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { return hasOther;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { },
10039  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { * Set the max ticks of either the x and y axis collection
10042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { getTickAmount: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { var options = this.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { tickAmount = options.tickAmount,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { tickPixelInterval = options.tickPixelInterval;
10047  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { if (!defined(options.tickInterval) && this.len < tickPixelInterval && !this.isRadial &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { !this.isLog && options.startOnTick && options.endOnTick) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { tickAmount = 2;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
10052  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { if (!tickAmount && this.alignToOthers()) {
10054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { // Add 1 because 4 tick intervals require 5 ticks (including first and last)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { tickAmount = Math.ceil(this.len / tickPixelInterval) + 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
10057  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { // For tick amounts of 2 and 3, compute five ticks and remove the intermediate ones. This
10059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { // prevents the axis from adding ticks that are too far away from the data extremes.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { if (tickAmount < 4) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { this.finalTickAmt = tickAmount;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { tickAmount = 5;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { }
10064  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { this.tickAmount = tickAmount;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { },
10067  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { * When using multiple axes, adjust the number of ticks to match the highest
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { * number of ticks in that group
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { adjustTickAmount: function() {
10073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { var tickInterval = this.tickInterval,
10074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { tickPositions = this.tickPositions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { tickAmount = this.tickAmount,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { finalTickAmt = this.finalTickAmt,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { currentTickAmount = tickPositions && tickPositions.length,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { i,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { len;
10080  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { if (currentTickAmount < tickAmount) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) { while (tickPositions.length < tickAmount) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { tickPositions.push(correctFloat(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { tickPositions[tickPositions.length - 1] + tickInterval
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { ));
10086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.transA *= (currentTickAmount - 1) / (tickAmount - 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.max = tickPositions[tickPositions.length - 1];
10089  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // We have too many ticks, run second pass to try to reduce ticks
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { } else if (currentTickAmount > tickAmount) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.tickInterval *= 2;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.setTickPositions();
10094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10095  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // The finalTickAmt property is set in getTickAmount
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (defined(finalTickAmt)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { i = len = tickPositions.length;
10099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { while (i--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { (finalTickAmt === 3 && i % 2 === 1) || // Remove every other tick
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { (finalTickAmt <= 2 && i > 0 && i < len - 1) // Remove all but first and last
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { ) {
10104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { tickPositions.splice(i, 1);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.finalTickAmt = undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10110  
10111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { *
10114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { setScale: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { isDirtyData,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { isDirtyAxisLength;
10119  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.oldMin = axis.min;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.oldMax = axis.max;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.oldAxisLength = axis.len;
10123  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // set the new axisLength
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.setAxisSize();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { //axisLength = horiz ? axisWidth : axisHeight;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { isDirtyAxisLength = axis.len !== axis.oldAxisLength;
10128  
10129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // is there new data?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { each(axis.series, function(series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (series.isDirtyData || series.isDirty ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { isDirtyData = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { });
10136  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // do we really need to go through all this?
10138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (isDirtyAxisLength || isDirtyData || axis.isLinked || axis.forceRedraw ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.userMin !== axis.oldUserMin || axis.userMax !== axis.oldUserMax || axis.alignToOthers()) {
10140  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (axis.resetStacks) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.resetStacks();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.forceRedraw = false;
10146  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // get data extremes if needed
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.getSeriesExtremes();
10149  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // get fixed positions based on tickInterval
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.setTickInterval();
10152  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // record old values to decide whether a rescale is necessary later on (#540)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.oldUserMin = axis.userMin;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.oldUserMax = axis.userMax;
10156  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (!axis.isDirty) {
10159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.isDirty = isDirtyAxisLength || axis.min !== axis.oldMin || axis.max !== axis.oldMax;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { } else if (axis.cleanStacks) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.cleanStacks();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10165  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Set the extremes and optionally redraw
10168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @param {Number} newMin
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @param {Number} newMax
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @param {Boolean} redraw
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @param {Boolean|Object} animation Whether to apply animation, and optionally animation
10172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * configuration
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @param {Object} eventArguments
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { setExtremes: function(newMin, newMax, redraw, animation, eventArguments) {
10177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { chart = axis.chart;
10179  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { redraw = pick(redraw, true); // defaults to true
10181  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { each(axis.series, function(serie) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { delete serie.kdTree;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Extend the arguments with min and max
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { eventArguments = extend(eventArguments, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { min: newMin,
10189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { max: newMax
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { });
10191  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Fire the event
10193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { fireEvent(axis, 'setExtremes', eventArguments, function() { // the default event handler
10194  
10195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.userMin = newMin;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.userMax = newMax;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.eventArgs = eventArguments;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (redraw) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { chart.redraw(animation);
10201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10204  
10205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Overridable method for zooming chart. Pulled out in a separate method to allow overriding
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * in stock charts.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { zoom: function(newMin, newMax) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var dataMin = this.dataMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { dataMax = this.dataMax,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { options = this.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { min = Math.min(dataMin, pick(options.min, dataMin)),
10214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { max = Math.max(dataMax, pick(options.max, dataMax));
10215  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (newMin !== this.min || newMax !== this.max) { // #5790
10217  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Prevent pinch zooming out of range. Check for defined is for #1946. #1734.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (!this.allowZoomOutside) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (defined(dataMin)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (newMin < min) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { newMin = min;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (newMin > max) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { newMin = max;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (defined(dataMax)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (newMax < min) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { newMax = min;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (newMax > max) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { newMax = max;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10238  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // In full view, displaying the reset zoom button is not required
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.displayBtn = newMin !== undefined || newMax !== undefined;
10241  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Do it
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { newMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { newMax,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { undefined, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { trigger: 'zoom'
10249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { );
10251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10252  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { return true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Update the axis metrics
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { setAxisSize: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var chart = this.chart,
10261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { options = this.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { offsets = options.offsets || [0, 0, 0, 0], // top / right / bottom / left
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { horiz = this.horiz,
10264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { width = pick(options.width, chart.plotWidth - offsets[3] + offsets[1]),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { height = pick(options.height, chart.plotHeight - offsets[0] + offsets[2]),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { top = pick(options.top, chart.plotTop + offsets[0]),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { left = pick(options.left, chart.plotLeft + offsets[3]),
10268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { percentRegex = /%$/;
10269  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Check for percentage based input values. Rounding fixes problems with
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // column overflow and plot line filtering (#4898, #4899)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (percentRegex.test(height)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { height = Math.round(parseFloat(height) / 100 * chart.plotHeight);
10274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (percentRegex.test(top)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { top = Math.round(parseFloat(top) / 100 * chart.plotHeight + chart.plotTop);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10278  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Expose basic values to use in Series object and navigator
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.left = left;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.top = top;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.width = width;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.height = height;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.bottom = chart.chartHeight - height - top;
10285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.right = chart.chartWidth - width - left;
10286  
10287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Direction agnostic properties
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.len = Math.max(horiz ? width : height, 0); // Math.max fixes #905
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.pos = horiz ? left : top; // distance from SVG origin
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10291  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Get the actual axis extremes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { getExtremes: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { isLog = axis.isLog,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { lin2log = axis.lin2log;
10299  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { return {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { min: isLog ? correctFloat(lin2log(axis.min)) : axis.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { max: isLog ? correctFloat(lin2log(axis.max)) : axis.max,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { dataMin: axis.dataMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { dataMax: axis.dataMax,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { userMin: axis.userMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { userMax: axis.userMax
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { };
10308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10309  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
10311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Used in bar and area plots
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { getThreshold: function(threshold) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { isLog = axis.isLog,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { lin2log = axis.lin2log,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { realMin = isLog ? lin2log(axis.min) : axis.min,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { realMax = isLog ? lin2log(axis.max) : axis.max;
10320  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (threshold === null) {
10322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { threshold = realMin;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { } else if (realMin > threshold) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { threshold = realMin;
10325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { } else if (realMax < threshold) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { threshold = realMax;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10328  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { return axis.translate(threshold, 0, 1, 0, 1);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10331  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Compute auto alignment for the axis label based on which side the axis is on
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * and the given rotation for the label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { autoLabelAlign: function(rotation) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var ret,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { angle = (pick(rotation, 0) - (this.side * 90) + 720) % 360;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (angle > 15 && angle < 165) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { ret = 'right';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { } else if (angle > 195 && angle < 345) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { ret = 'left';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { ret = 'center';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { return ret;
10348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10349  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Get the tick length and width for the axis.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @param {String} prefix 'tick' or 'minorTick'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @returns {Array} An array of tickLength and tickWidth
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { tickSize: function(prefix) {
10356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var options = this.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { tickLength = options[prefix + 'Length'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
10359  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (tickWidth && tickLength) {
10361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Negate the length
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (options[prefix + 'Position'] === 'inside') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { tickLength = -tickLength;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { return [tickLength, tickWidth];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10367  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10369  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Return the size of the labels
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { labelMetrics: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { return this.chart.renderer.fontMetrics(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.options.labels.style && this.options.labels.style.fontSize,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.ticks[0] && this.ticks[0].label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10379  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * axis, this is handled by rotating the labels, removing ticks and adding ellipsis.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * On a vertical axis remove ticks and add ellipsis.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { unsquish: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var labelOptions = this.options.labels,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { horiz = this.horiz,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { tickInterval = this.tickInterval,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { newTickInterval = tickInterval,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { slotSize = this.len / (((this.categories ? 1 : 0) + this.max - this.min) / tickInterval),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { rotation,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { rotationOption = labelOptions.rotation,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { labelMetrics = this.labelMetrics(),
10394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { step,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { bestScore = Number.MAX_VALUE,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { autoRotation,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Return the multiple of tickInterval that is needed to avoid collision
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { getStep = function(spaceNeeded) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var step = spaceNeeded / (slotSize || 1);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { step = step > 1 ? Math.ceil(step) : 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { return step * tickInterval;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { };
10403  
10404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (horiz) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { autoRotation = !labelOptions.staggerLines && !labelOptions.step && ( // #3971
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { defined(rotationOption) ? [rotationOption] :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { slotSize < pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation );
10409  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation if (autoRotation) {
10411  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation each(autoRotation, function(rot) {
10415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation var score;
10416  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
10418  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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)));
10420  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { / score = step + Math.abs(rot / 360);
10422  
10423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { / if (score < bestScore) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { bestScore = score;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { rotation = rot;
10426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { newTickInterval = step;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { }
10431  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { } else if (!labelOptions.step) { // #4411
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { newTickInterval = getStep(labelMetrics.h);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { }
10435  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { this.autoRotation = autoRotation;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { this.labelRotation = pick(rotation, rotationOption);
10438  
10439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { return newTickInterval;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { },
10441  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { getSlotWidth: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { var chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { horiz = this.horiz,
10449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { labelOptions = this.options.labels,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { marginLeft = chart.margin[3];
10452  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { return (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { horiz &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { (labelOptions.step || 0) < 2 &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && !labelOptions.rotation && // #4415
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ) || (!horiz && (
10459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (marginLeft && (marginLeft - chart.spacing[3])) ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && chart.chartWidth * 0.33
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && )); // #1580, #1931
10462  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10464  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
10467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderUnsquish: function() {
10469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderer = chart.renderer,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tickPositions = this.tickPositions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks = this.ticks,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOptions = this.options.labels,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz = this.horiz,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && slotWidth = this.getSlotWidth(),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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))),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && attr = {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelMetrics = this.labelMetrics(),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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,
10480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && css,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && maxLabelLength = 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && i,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pos;
10485  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!isString(labelOptions.rotation)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10490  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Get the longest label length
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(tickPositions, function(tick) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tick = ticks[tick];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (tick && tick.labelLength > maxLabelLength) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && maxLabelLength = tick.labelLength;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.maxLabelLength = maxLabelLength;
10499  
10500  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (this.autoRotation) {
10503  
10504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && attr.rotation = this.labelRotation;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.labelRotation = 0;
10510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10511  
10512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else if (slotWidth) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // For word-wrap or ellipsis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && css = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && width: innerWidth + 'px'
10517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
10518  
10519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!textOverflowOption) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && css.textOverflow = 'clip';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
10523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && i = tickPositions.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && while (!horiz && i--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pos = tickPositions[i];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label = ticks[pos].label;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (label) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label.css({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && textOverflow: 'clip'
10532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
10533  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) {
10536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label.css({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && width: slotWidth + 'px'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
10539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10540  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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)) {
10542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label.specCss = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && textOverflow: 'ellipsis'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10550  
10551  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
10553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (attr.rotation) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && css = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!textOverflowOption) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && css.textOverflow = 'ellipsis';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10561  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
10563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (this.labelAlign) {
10565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && attr.align = this.labelAlign;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10567  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Apply general and specific CSS
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(tickPositions, function(pos) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var tick = ticks[pos],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label = tick && tick.label;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (label) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (css) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && delete label.specCss;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tick.rotation = attr.rotation;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
10581  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10585  
10586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && hasData: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
10591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10592  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && addTitle: function(display) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderer = axis.chart.renderer,
10600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz = axis.horiz,
10601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && opposite = axis.opposite,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options = axis.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitleOptions = options.title,
10604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && textAlign;
10605  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!axis.axisTitle) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && textAlign = axisTitleOptions.textAlign;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!textAlign) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && textAlign = (horiz ? {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && low: 'left',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && middle: 'center',
10612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && high: 'right'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } : {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && low: opposite ? 'right' : 'left',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && middle: 'center',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && high: opposite ? 'left' : 'right'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && })[axisTitleOptions.align];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.axisTitle = renderer.text(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitleOptions.text,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 0,
10622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitleOptions.useHTML
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && zIndex: 7,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && rotation: axisTitleOptions.rotation || 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && align: textAlign
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .addClass('highcharts-axis-title')
10631  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .css(axisTitleOptions.style)
10633  
10634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .add(axis.axisGroup);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.axisTitle.isNew = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10637  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {number} pos - The tick position in axis values.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {number} i - The index of the tick in axis.tickPositions.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && generateTick: function(pos) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var ticks = this.ticks;
10649  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!ticks[pos]) {
10651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
10652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10656  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getOffset: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var axis = this,
10662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && chart = axis.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderer = chart.renderer,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options = axis.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tickPositions = axis.tickPositions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks = axis.ticks,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz = axis.horiz,
10668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && side = axis.side,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && invertedSide = chart.inverted ? [1, 0, 3, 2][side] : side,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && hasData,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && showAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && titleOffset = 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && titleOffsetOption,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && titleMargin = 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitleOptions = options.title,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOptions = options.labels,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffset = 0, // reset
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffsetPadded,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisOffset = chart.axisOffset,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clipOffset = chart.clipOffset,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clip,
10682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && n,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && className = options.className,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
10686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineHeightCorrection,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tickSize = this.tickSize('tick');
10688  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // For reuse in Axis.render
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && hasData = axis.hasData();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
10692  
10693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Set/reset staggerLines
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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;
10695  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!axis.axisGroup) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.gridGroup = renderer.g('grid')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && zIndex: options.gridZIndex || 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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 || ''))
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .add(axisParent);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.axisGroup = renderer.g('axis')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr({
10706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && zIndex: options.zIndex || 2
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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 || ''))
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .add(axisParent);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && zIndex: labelOptions.zIndex || 7
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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 || ''))
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .add(axisParent);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10717  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (hasData || axis.isLinked) {
10719  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Generate ticks
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(tickPositions, function(pos, i) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.generateTick(pos, i);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
10725  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.renderUnsquish();
10727  
10728  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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 || {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 1: 'left',
10732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 3: 'right'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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')) {
10734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(tickPositions, function(pos) {
10735  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // get the highest offset
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffset = Math.max(
10738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks[pos].getLabelSize(),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffset
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
10742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10743  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (axis.staggerLines) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffset *= axis.staggerLines;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10748  
10749  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else { // doesn't have data
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && for (n in ticks) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks[n].destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && delete ticks[n];
10754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10756  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.addTitle(showAxis);
10759  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (showAxis) {
10761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && titleOffset = axis.axisTitle.getBBox()[horiz ? 'height' : 'width'];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && titleOffsetOption = axisTitleOptions.offset;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10766  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Render the axis line
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.renderLine();
10769  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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]);
10772  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.tickRotCorr = axis.tickRotCorr || {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && x: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && y: 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }; // polar
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (side === 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineHeightCorrection = -axis.labelMetrics().h;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else if (side === 2) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineHeightCorrection = axis.tickRotCorr.y;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineHeightCorrection = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10784  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Find the padded label offset
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffsetPadded = Math.abs(labelOffset) + titleMargin;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (labelOffset) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffsetPadded -= lineHeightCorrection;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.axisTitleMargin = pick(titleOffsetOption, labelOffsetPadded);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisOffset[side] = Math.max(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisOffset[side],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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,
10796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffsetPadded, // #3027
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && hasData && tickPositions.length && tickSize ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tickSize[0] + directionFactor * axis.offset :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && );
10801  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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 axis lines
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clip = options.offset ? 0 : Math.floor(axis.axisLine.strokeWidth() / 2) * 2; // #4308, #4371
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clipOffset[invertedSide] = Math.max(clipOffset[invertedSide], clip);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10806  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Get the path for the axis line
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getLinePath: function(lineWidth) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && opposite = this.opposite,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && offset = this.offset,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz = this.horiz,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineTop = chart.chartHeight - this.bottom - (opposite ? this.height : 0) + offset;
10817  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (opposite) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return chart.renderer
10823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .crispLine([
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'M',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.left :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineLeft,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz ?
10829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineTop :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.top,
10831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'L',
10832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && chart.chartWidth - this.right :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineLeft,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineTop :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && chart.chartHeight - this.bottom
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ], lineWidth);
10839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10840  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Render the axis line
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderLine: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!this.axisLine) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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()
10847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .addClass('highcharts-axis-line')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .add(this.axisGroup);
10849  
10850  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.axisLine.attr({
10852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && stroke: this.options.lineColor,
10853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'stroke-width': this.options.lineWidth,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && zIndex: 7
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
10856  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10859  
10860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Position the title
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
10863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getTitlePosition: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var horiz = this.horiz,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisLeft = this.left,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTop = this.top,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisLength = this.len,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitleOptions = this.options.title,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && margin = horiz ? axisLeft : axisTop,
10871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && opposite = this.opposite,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && offset = this.offset,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && xOption = axisTitleOptions.x || 0,
10874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && yOption = axisTitleOptions.y || 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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,
10876  
10877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && alongAxis = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && low: margin + (horiz ? 0 : axisLength),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && middle: margin + axisLength / 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && high: margin + (horiz ? axisLength : 0)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }[axisTitleOptions.align],
10883  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.axisTitleMargin +
10889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (this.side === 2 ? fontSize : 0);
10890  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && x: horiz ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && y: horiz ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
10897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10898  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
10904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderMinorTick: function(pos) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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),
10906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && minorTicks = this.minorTicks;
10907  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!minorTicks[pos]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10911  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (slideInTicks && minorTicks[pos].isNew) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && minorTicks[pos].render(null, true);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10916  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
10918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10919  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * in this position, move it.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderTick: function(pos, i) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var isLinked = this.isLinked,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks = this.ticks,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
10930  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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)) {
10933  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!ticks[pos]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
10936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10937  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (slideInTicks && ticks[pos].isNew) {
10940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10942  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks[pos].render(i);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10946  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Render the axis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && render: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && chart = axis.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderer = chart.renderer,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options = axis.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && isLog = axis.isLog,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lin2log = axis.lin2log,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && isLinked = axis.isLinked,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tickPositions = axis.tickPositions,
10959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitle = axis.axisTitle,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks = axis.ticks,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && minorTicks = axis.minorTicks,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && alternateBands = axis.alternateBands,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && stackLabelOptions = options.stackLabels,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && alternateGridColor = options.alternateGridColor,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tickmarkOffset = axis.tickmarkOffset,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisLine = axis.axisLine,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && showAxis = axis.showAxis,
10968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && animation = animObject(renderer.globalAnimation),
10969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && from,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && to;
10971  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Reset
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.labelEdge.length = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && //axis.justifyToPlot = overflow === 'justify';
10975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.overlap = false;
10976  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
10978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var pos;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && for (pos in coll) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && coll[pos].isActive = false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
10984  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (axis.hasData() || isLinked) {
10987  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // minor ticks
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (axis.minorTickInterval && !axis.categories) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(axis.getMinorTickPositions(), function(pos) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.renderMinorTick(pos);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10994  
10995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (tickPositions.length) { // #1300
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(tickPositions, function(pos, i) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.renderTick(pos, i);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
11002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!ticks[-1]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks[-1].render(-1);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11011  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // alternate grid color
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (alternateGridColor) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(tickPositions, function(pos, i) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
11017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!alternateBands[pos]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && alternateBands[pos] = new PlotLineOrBand(axis);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && from = pos + tickmarkOffset; // #949
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && alternateBands[pos].options = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && from: isLog ? lin2log(from) : from,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && to: isLog ? lin2log(to) : to,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && color: alternateGridColor
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && alternateBands[pos].render();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && alternateBands[pos].isActive = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11031  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // custom plot lines and bands
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) {
11035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.addPlotBandOrLine(plotLineOptions);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis._addedPlotLB = true;
11038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11039  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } // end if hasData
11041  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Remove inactive ticks
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var pos,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && forDestruction = [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && delay = animation.duration,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && destroyInactiveItems = function() {
11049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && i = forDestruction.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && while (i--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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,
11052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // or the may be reactivated
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && coll[forDestruction[i]].destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && delete coll[forDestruction[i]];
11056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11058  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11060  
11061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && for (pos in coll) {
11062  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!coll[pos].isActive) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Render to zero opacity
11065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && coll[pos].render(pos, false, 0);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && coll[pos].isActive = false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && forDestruction.push(pos);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11070  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && syncTimeout(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && destroyInactiveItems,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11077  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Set the axis line path
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (axisLine) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisLine[axisLine.isPlaced ? 'animate' : 'attr']({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && d: this.getLinePath(axisLine.strokeWidth())
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisLine.isPlaced = true;
11084  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisLine[showAxis ? 'show' : 'hide'](true);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11088  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (axisTitle && showAxis) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitle[axisTitle.isNew ? 'attr' : 'animate'](
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.getTitlePosition()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitle.isNew = false;
11095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11096  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Stacked totals:
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (stackLabelOptions && stackLabelOptions.enabled) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.renderStackTotals();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // End stacked totals
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.isDirty = false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && redraw: function() {
11110  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (this.visible) {
11112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // render the axis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.render();
11114  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // move plot lines and bands
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(this.plotLinesAndBands, function(plotLine) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotLine.render();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11120  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(this.series, function(series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && series.isDirty = 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11125  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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,
11129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // #5773, #5881).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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'],
11131  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Destroys an Axis instance.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && destroy: function(keepEvents) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && stacks = axis.stacks,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && stackKey,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotLinesAndBands = axis.plotLinesAndBands,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotGroup,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && i,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && n;
11143  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Remove the events
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!keepEvents) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && removeEvent(axis);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11148  
11149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Destroy each stack total
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && for (stackKey in stacks) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && destroyObjectProperties(stacks[stackKey]);
11152  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && stacks[stackKey] = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11155  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Destroy collections
11157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && destroyObjectProperties(coll);
11159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (plotLinesAndBands) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && i = plotLinesAndBands.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && while (i--) { // #1975
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotLinesAndBands[i].destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11166  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Destroy local variables
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (axis[prop]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis[prop] = axis[prop].destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11173  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
11175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && for (plotGroup in axis.plotLinesAndBandsGroups) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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();
11177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11178  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && for (n in axis) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (axis.hasOwnProperty(n) && inArray(n, axis.keepProps) === -1) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && delete axis[n];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Draw the crosshair
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {Object} e The event arguments from the modified pointer event
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {Object} point The Point object
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && drawCrosshair: function(e, point) {
11194  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var path,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options = this.crosshair,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && snap = pick(options.snap, true),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pos,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && categorized,
11200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && graphic = this.cross;
11201  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // mouse interaction (#5287)
11204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!e) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11207  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Disabled in options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && !this.crosshair ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Snap
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ((defined(point) || !snap) === false)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.hideCrosshair();
11215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
11216  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Get the path
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!snap) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else if (defined(point)) {
11221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11223  
11224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (defined(pos)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && path = this.getPlotLinePath(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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)),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && null,
11229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pos // Translated position
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ) || null; // #3189
11233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11234  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!defined(path)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.hideCrosshair();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && categorized = this.categories && !this.isRadial;
11241  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Draw the cross
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!graphic) {
11244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .path()
11246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .addClass('highcharts-crosshair highcharts-crosshair-' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (categorized ? 'category ' : 'thin ') + options.className)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && zIndex: pick(options.zIndex, 2)
11250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .add();
11252  
11253  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Presentational attributes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && graphic.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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'),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (options.dashStyle) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && graphic.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && dashstyle: options.dashStyle
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11264  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11267  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && graphic.show().attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && d: path
11270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11271  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (categorized && !options.width) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && graphic.attr({
11274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'stroke-width': this.transA
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.cross.e = e;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11280  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Hide the crosshair.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && hideCrosshair: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (this.cross) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.cross.hide();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }; // end Axis
11290  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && extend(H.Axis.prototype, AxisPlotLineOrBandExtension);
11292  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (function(H) {
11295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var Axis = H.Axis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getMagnitude = H.getMagnitude,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && map = H.map,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && normalizeTickInterval = H.normalizeTickInterval,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pick = H.pick;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options = axis.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisLength = axis.len,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lin2log = axis.lin2log,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && log2lin = axis.log2lin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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,
11319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && positions = [];
11321  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Reset
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!minor) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis._minorAutoInterval = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (interval >= 0.5) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && interval = Math.round(interval);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
11331  
11332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else if (interval >= 0.08) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var roundedMin = Math.floor(min),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && intermediate,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && i,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && j,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && len,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pos,
11341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lastPos,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && break2;
11343  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (interval > 0.3) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && intermediate = [1, 2, 4];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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];
11348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11351  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && len = intermediate.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && positions.push(lastPos);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (lastPos > max) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && break2 = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lastPos = pos;
11364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var realMin = lin2log(min),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && realMax = lin2log(max),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tickIntervalOption = options[minor ? 'minorTickInterval' : 'tickInterval'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && filteredTickIntervalOption = tickIntervalOption === 'auto' ? null : tickIntervalOption,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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;
11377  
11378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && interval = pick(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && filteredTickIntervalOption,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis._minorAutoInterval,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (realMax - realMin) * tickPixelIntervalOption / (totalPixelLength || 1)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && );
11383  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && interval = normalizeTickInterval(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && interval,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getMagnitude(interval)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && );
11389  
11390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && positions = map(axis.getLinearTickPositions(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && interval,
11392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && realMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && realMax
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ), log2lin);
11395  
11396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!minor) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis._minorAutoInterval = interval / 5;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11400  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!minor) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.tickInterval = interval;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return positions;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11407  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && Axis.prototype.log2lin = function(num) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11411  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && Axis.prototype.lin2log = function(num) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return Math.pow(10, num);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var dateFormat = H.dateFormat,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && extend = H.extend,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && format = H.format,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && isNumber = H.isNumber,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && map = H.map,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && merge = H.merge,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pick = H.pick,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && splat = H.splat,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && syncTimeout = H.syncTimeout,
11433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && timeUnits = H.timeUnits;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * The tooltip object
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {Object} options Tooltip options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && H.Tooltip = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.init.apply(this, arguments);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11442  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && H.Tooltip.prototype = {
11444  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && init: function(chart, options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Save the chart and options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.chart = chart;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.options = options;
11450  
11451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && //this.currentSeries = undefined;
11453  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // List of crosshairs
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.crosshairs = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.now = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && x: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && y: 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11462  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // The tooltip is initially hidden
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.isHidden = true;
11465  
11466  
11467  
11468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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;
11471  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11473  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
11476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @return {undefined}
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && cleanSplit: function(force) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var tt = series && series.tt;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (tt) {
11484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!tt.isActive || force) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && series.tt = tt.destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tt.isActive = false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11492  
11493  
11494  
11495  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * label.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getLabel: function() {
11501  
11502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var renderer = this.chart.renderer,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options = this.options;
11504  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!this.label) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Create the label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (this.split) {
11508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.label = renderer.g('tooltip');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.label = renderer.label(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && '',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 0,
11514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options.shape || 'callout',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options.useHTML,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'tooltip'
11520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && padding: options.padding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && r: options.borderRadius
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11525  
11526  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'fill': options.backgroundColor,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'stroke-width': options.borderWidth
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && })
11532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // #2301, #2657
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .css(options.style)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .shadow(options.shadow);
11535  
11536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11537  
11538  
11539  
11540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && zIndex: 8
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .add();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return this.label;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11548  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && update: function(options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11553  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && destroy: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Destroy and clear local variables
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (this.label) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.label = this.label.destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (this.split && this.tt) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.cleanSplit(this.chart, true);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.tt = this.tt.destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clearTimeout(this.hideTimer);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clearTimeout(this.tooltipTimeout);
11568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11569  
11570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {Number} x
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {Number} y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @private
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var tooltip = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && now = tooltip.now,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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 &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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;
11584  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Get intermediate values for animation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && extend(now, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11592  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Move to the intermediate value
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tooltip.getLabel().attr(now);
11595  
11596  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (animate) {
11599  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Never allow two timeouts
11601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clearTimeout(this.tooltipTimeout);
11602  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.tooltipTimeout = setTimeout(function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (tooltip) {
11608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
11609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }, 32);
11611  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11614  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Hide the tooltip
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && hide: function(delay) {
11619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var tooltip = this;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!this.isHidden) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.hideTimer = syncTimeout(function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tooltip.getLabel()[delay ? 'fadeOut' : 'hide']();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tooltip.isHidden = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }, delay);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11629  
11630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getAnchor: function(points, mouseEvent) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var ret,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && inverted = chart.inverted,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotTop = chart.plotTop,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotLeft = chart.plotLeft,
11640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotX = 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotY = 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && yAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && xAxis;
11644  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && points = splat(points);
11646  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Pie uses a special tooltipPos
11648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ret = points[0].tooltipPos;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (this.followPointer && mouseEvent) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (mouseEvent.chartX === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && mouseEvent = chart.pointer.normalize(mouseEvent);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ret = [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && mouseEvent.chartX - chart.plotLeft,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && mouseEvent.chartY - plotTop
11658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ];
11659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!ret) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(points, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && yAxis = point.series.yAxis;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && xAxis = point.series.xAxis;
11665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11669  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotX /= points.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotY /= points.length;
11672  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ret = [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && inverted ? chart.plotWidth - plotY : plotX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && inverted ? chart.plotHeight - plotX : plotY
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11680  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return map(ret, Math.round);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11683  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
11687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getPosition: function(boxWidth, boxHeight, point) {
11689  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && distance = this.distance,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ret = {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && h = point.h || 0, // #4117
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && swapped,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && first = ['y', chart.chartHeight, boxHeight,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && chart.plotTop + chart.plotHeight
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ],
11699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && second = ['x', chart.chartWidth, boxWidth,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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,
11701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && chart.plotLeft + chart.plotWidth
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
11705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var roomLeft = innerSize < point - distance,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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;
11714  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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) {
11722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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 :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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;
11730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); },
11732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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;
11740  
11741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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
11742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
11744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
11746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
11753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
11762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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);
11769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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();
11774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > };
11778  
11779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
11781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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();
11784  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
11786  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > },
11788  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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>}
11794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
11796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
11798  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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])];
11801  
11802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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));
11804  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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));
11807  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > },
11810  
11811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
11814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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 = {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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 = [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
11829  
11830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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);
11831  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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];
11837  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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');
11842  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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());
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > });
11845  
11846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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];
11852  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
11858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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);
11859  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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);
11863  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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();
11867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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 {
11868  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
11877  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > });
11885  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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));
11889  
11890  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > });
11894  
11895  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
11902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
11904  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > },
11908  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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 = [],
11917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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();
11923  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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] ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > },
11932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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 || {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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'),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
11940  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
11948  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
11952  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
11956  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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({
11959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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);
11963  
11964  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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();
11967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
11970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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(
11973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) -
11979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
11981  
11982  
11983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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
11984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
11987  
11988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
11990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12000  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
12003  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12009  
12010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
12011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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({
12012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 ?
12018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
12021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12024  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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(),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { );
12037  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)
12042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
12043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12046  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
12052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
12054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
12055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
12065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12070  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
12072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12077  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12083  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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])) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12089  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12095  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12099  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12102  
12103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12110  
12111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
12114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
12115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { );
12118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12124  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
12133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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'];
12137  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12142  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 + '}');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12147  
12148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12153  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
12163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
12167  
12168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
12188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
12199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
12204  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
12208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12210  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12214  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12217  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 = {};
12220  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12225  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12228  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 || '',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12240  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12245  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12252  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 The event object in standard browsers
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
12259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12261  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12267  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12270  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12275  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12285  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12291  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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: [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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: []
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
12302  
12303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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({
12305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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'])
12307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
12317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 = [],
12320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
12323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12324  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
12326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12340  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 =
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) -
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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),
12348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12349  
12350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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:
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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:
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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:
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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:
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 {
12361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12365  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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):
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12380  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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(existingHoverPoint, existingHoverSeries, series, isDirectTouch, shared, e) {
12389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12393  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 it has a hoverPoint and that series requires direct touch (like columns, #3899), or we're on
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 noSharedTooltip series among shared tooltip series (#4546), use the hoverPoint . Otherwise,
12396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // search the k-d tree.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Handle shared tooltip or cases where a series is not yet hovered
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 (isDirectTouch) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 = [];
12401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
12403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 noSharedTooltip = s.noSharedTooltip && shared,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
12405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 && !noSharedTooltip && !directTouch && pick(s.options.enableMouseTracking, true)) { // #3821
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.searchKDTree({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { clientX: hoverPoint.clientX,
12409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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: hoverPoint.plotY
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.kdDimensions === 1);
12411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)
12412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.push(kdpointT);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 kdTree is not built
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.length === 0) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 = [hoverPoint];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 {
12421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 = [hoverPoint];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 the hovered series has stickyTracking false.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 (hoverSeries && !hoverSeries.stickyTracking) {
12425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 = [hoverSeries];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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, e);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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, function(p) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 the hoverSeries has stickyTracking or there is no series hovered.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
12435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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(searchSeries, shared, e);
12439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 = hoverPoints[0];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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, e);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12451  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
12454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
12471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 || (!shared && hoverSeries && hoverSeries.directTouch),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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(hoverPoint, hoverSeries, series, isDirectTouch, shared, e),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12477  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
12479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 = shared && hoverPoint && !hoverPoint.series.noSharedTooltip;
12483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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] : [])
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 // #3926, #4200
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) &&
12492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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))
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { ) {
12494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12507  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 && !hoverSeries.directTouch) { // #4448
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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');
12513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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  
12531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 crosshairs (#4927, #5269 #5066, #5658)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Snap is true. For each hover point, loop over the axes and draw a
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // crosshair if that point belongs to the axis.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // @todo Consider only one crosshair per axis.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 (pick(axis.crosshair.snap, true)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 (p.series[axis.coll] === axis) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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, p);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 hover 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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} Instead of destroying the tooltip altogether, allow moving it if possible
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
12568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12571  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12580  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12594  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 {
12597  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12607  
12608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12611  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
12614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12615  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12619  
12620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12624  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12628  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12636  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12651  
12652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12661  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
12678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
12684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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'];
12690  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
12698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12710  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { );
12716  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
12719  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
12728  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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({
12731  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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(),
12733  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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',
12735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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  
12741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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({
12745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12757  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
12759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
12771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12772  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
12776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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: [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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: []
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
12783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12785  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12788  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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[{
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
12799  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 ? {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12824  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 = [];
12833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12835  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12837  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
12841  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12846  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12849  
12850  
12851  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12865  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
12867  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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') &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
12872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12874  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12885  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12890  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12894  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12901  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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') ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12908  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
12913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12929  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12933  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 &&
12935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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') &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { ) {
12940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12943  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12949  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12953  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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')) {
12956  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }));
12961  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12966  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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));
12970  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12976  
12977  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12980  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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() {
12987  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
12990  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
12992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13015  
13016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13017  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 prop;
13023  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.unDocMouseMove) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.unDocMouseMove();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13027  
13028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.container,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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.onContainerMouseLeave
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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', this.onDocumentMouseUp);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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', this.onDocumentTouchEnd);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13037  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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(this.tooltipTimeout);
13040  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 (prop in this) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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[prop] = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
13046  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
13061  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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 */ {
13064  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13076  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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')],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 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'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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],
13097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13107  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
13111  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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();
13114  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
13116  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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
13118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13125  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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]);
13134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13135  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
13138  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13142  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13150  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13156  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
13161  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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') &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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),
13173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = {};
13174  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13180  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13185  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
13194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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] = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
13200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
13201  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
13204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)),
13208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
13211  
13212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
13217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13218  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
13221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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));
13222  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13225  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
13229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13234  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
13236  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13238  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
13241  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13257  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13264  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
13268  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
13274  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13279  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
13283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) +
13289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13292  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13296  
13297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13301  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
13303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13306  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
13309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13311  
13312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13315  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
13323  
13324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
13326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13341  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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.PointerEvent || win.MSPointerEvent) {
13343  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [];
13350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 (key in touches) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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.hasOwnProperty(key)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: touches[key].pageX,
13357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: touches[key].pageY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: touches[key].target
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
13365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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]({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
13377  
13378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
13381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 */ {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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] = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
13392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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] = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13407  
13408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
13411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
13432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
13434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
13439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13442  
13443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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));
13444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
13450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13451  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
13467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = function(chart, options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
13472  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.prototype = {
13474  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
13478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
13479  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
13485  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
13488  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13495  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
13497  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
13499  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13501  
13502  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
13505  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [];
13513  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13515  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 Legend options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 Whether to redraw the chart, defaults to true.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
13522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13524  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13532  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'](
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
13542  
13543  
13544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = {
13554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13557  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
13559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
13563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13569  
13570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
13571  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 (key in symbolAttr) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13582  
13583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13585  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13587  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13602  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
13610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13611  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13617  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13624  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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]) {
13630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
13634  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13649  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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([
13657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13668  
13669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13677  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13683  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13698  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
13700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13708  
13709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
13721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
13725  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
13727  
13728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
13731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13739  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
13743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13750  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13763  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13766  
13767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 &&
13783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13788  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
13790  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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')
13794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 : '') +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 : '')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { '',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
13812  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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))
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
13818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
13821  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
13825  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
13829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
13834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13835  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
13839  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
13841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13849  
13850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
13852  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
13855  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
13858  
13859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 =
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ||
13861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 + symbolPadding + bBox.width + itemDistance +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 > (
13872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 || (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13882  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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 +
13885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }*/
13890  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
13899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
13901  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
13904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13905  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13910  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) +
13914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13918  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
13927  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )) {
13933  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
13935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
13937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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' ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13948  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
13962  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
13964  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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([
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)/,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)/,
13968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)/,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)/
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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])) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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]],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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[
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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[
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13990  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
13998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14013  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14028  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
14030  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) -
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
14042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14044  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14047  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14053  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14060  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
14069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
14072  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
14076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
14080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
14081  
14082  
14083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'](
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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())
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
14092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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']();
14097  
14098  
14099  
14100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14102  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'] =
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }*/
14121  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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, {
14124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14128  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14133  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
14168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
14170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)' :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
14176  
14177  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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' &&
14181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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' &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14189  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
14193  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 =
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14198  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
14201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14205  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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 &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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])) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++;
14210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14211  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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 &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14220  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
14223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 =
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14228  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
14230  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
14233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
14248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
14251  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
14253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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')
14254  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
14256  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
14258  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14272  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
14275  
14276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14277  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14287  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14290  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
14297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14305  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14310  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
14312  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14316  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ?
14324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14334  
14335  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
14338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14352  
14353  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14355  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14359  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
14362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14363  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
14367  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /*
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14371  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = {
14373  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14385  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
14392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
14397  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14399  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
14408  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 -
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = {};
14421  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
14427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14430  
14431  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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([
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
14437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ])
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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')
14441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
14443  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
14446  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
14452  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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, {
14456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14461  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
14463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
14472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
14476  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(Legend.prototype, 'positionItem', function(proceed, item) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
14491  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
14494  
14495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14499  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 its
14546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {ChartOptions} options - The chart options structure.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
14553  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.prototype = {
14559  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: [],
14564  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
14571  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
14575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14579  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
14584  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14588  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14593  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14595  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14597  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [];
14600  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = {
14603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {}
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14606  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = undefined;
14612  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14628  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.renderToClone = undefined;
14631  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14633  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14635  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { eventType;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++;
14651  
14652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 (eventType in chartEvents) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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, chartEvents[eventType]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14658  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [];
14660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [];
14661  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14663  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
14676  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
14684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14686  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
14694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14706  
14707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
14710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
14715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14717  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 &&
14721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14723  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 legend, axes or series based on updated data
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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|Object} animation Whether to apply animation, and optionally animation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
14753  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.cloneRenderTo();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14757  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
14760  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
14765  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14768  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
14780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14784  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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') {
14789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
14790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
14802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
14804  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14807  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
14811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14812  
14813  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
14818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14821  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14823  
14824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14831  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
14834  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14849  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
14851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14854  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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');
14858  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14868  
14869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
14871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14873  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
14876  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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');
14880  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.cloneRenderTo(true);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14884  
14885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
14888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
14896  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
14903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14904  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 =
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) ||
14908  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
14911  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14916  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14919  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 || {}),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 || {}),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
14942  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 currently selected points from all series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.points || [], function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14961  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 currently selected series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
14966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14970  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Show the title and subtitle of the chart
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {Object} New title options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {Object} New subtitle options
14976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
14980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
14983  
14984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
14985  
14986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15005  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
15009  
15010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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([
15012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
15019  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
15021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15023  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
15036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
15037  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
15042  
15043  
15044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15046  
15047  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15052  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15062  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
15065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15068  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
15070  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15072  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: titleOffset + titleSize + (key === 'title' ? -3 : 2)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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');
15083  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15093  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15096  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15105  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.renderToClone || chart.renderTo;
15115  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15123  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15136  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 a clone of the chart's renderTo div and place it outside the viewport to allow
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 computation on chart.render and chart.redraw
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cloneRenderTo: function(revert) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 clone = this.renderToClone,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = this.container;
15144  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 clone and bring the container back to the real renderTo div
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (clone) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 (clone.childNodes.length) { // #5231
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.appendChild(clone.firstChild);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(clone);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 this.renderToClone;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15154  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 clone
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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 && container.parentNode === this.renderTo) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.removeChild(container); // do not clone this
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.renderToClone = clone = this.renderTo.cloneNode(0);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(clone, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: 'absolute',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: '-9999px',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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' // #833
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (clone.style.setProperty) { // #2631
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clone.style.setProperty('display', 'block', 'important');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.body.appendChild(clone);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clone.appendChild(container);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15175  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 || '');
15181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15182  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 container
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 to hold the 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15201  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15209  
15210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
15212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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 hasRendered is there
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // because web pages that are saved to disk from the browser, will preserve the data-highcharts-chart
15217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // attribute and the SVG contents, but not an interactive chart. So in this case,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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(oldChartIndex) && charts[oldChartIndex] && charts[oldChartIndex].hasRendered) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15223  
15224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15226  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = '';
15229  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.cloneRenderTo();
15237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15238  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15245  
15246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) and
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // content overflow in IE
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15257  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = createElement(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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', {
15260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.renderToClone || renderTo
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
15267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15268  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
15279  
15280  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15282  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15284  
15285  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15289  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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. Title,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 and legend have already been rendered at this stage, but will be
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 into their final positions
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15300  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
15302  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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])) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(chart.plotTop, titleOffset + chart.options.title.margin + spacing[0]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
15308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15312  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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] = (chart[chart.extraMargin.type] || 0) + chart.extraMargin.value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15324  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
15326  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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], // top, right, bottom, left
15329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15330  
15331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15339  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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])) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15346  
15347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
15348  
15349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15350  
15351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 its container if size is not explicitly set
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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),
15359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'),
15361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15362  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 Opera,
15364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 in Firefox, Chrome and IE9.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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 && !chart.isPrinting && width && height && (target === win || target === doc)) { // #1093
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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 !== chart.containerWidth || height !== chart.containerHeight) {
15367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 directly (#2224)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) { // It may have been destroyed in the meantime (#1257)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15379  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15386  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15403  
15404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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} width
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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} height
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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|Boolean} animation
15409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15417  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15420  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
15430  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 (#2503)
15432  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15438  
15439  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15442  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
15445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15448  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
15454  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15456  
15457  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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');
15460  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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, fire without delay
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15470  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 pre-render
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 determine margin sizes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(0, Math.round(chartWidth - plotLeft - chart.marginRight));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(0, Math.round(chartHeight - plotTop - chart.marginBottom));
15496  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15501  
15502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
15515  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(Math.max(plotBorderWidth, clipOffset[3]) / 2);
15518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(Math.max(plotBorderWidth, clipOffset[0]) / 2);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(chart.plotSizeX - Math.max(plotBorderWidth, clipOffset[1]) / 2 - clipX),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(0, Math.floor(chart.plotSizeY - Math.max(plotBorderWidth, clipOffset[2]) / 2 - clipY))
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
15525  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
15538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15540  
15541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
15545  
15546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
15547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(chartOptions[target + sideName], values[side]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15550  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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, chart.marginRight, chart.marginBottom.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [0, 0, 0, 0];
15557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15558  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15572  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15577  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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()
15592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15596  
15597  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15601  
15602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
15605  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
15607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15613  
15614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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]({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15621  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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';
15624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15631  
15632  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
15643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(plotBackgroundImage, plotLeft, plotTop, plotWidth, plotHeight)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15649  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
15655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
15668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15672  
15673  
15674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15680  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15688  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15692  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 series. This mainly applies to the chart.inverted property, and in extensions to
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.angular and chart.polar properties.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15705  
15706  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
15708  
15709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 || optionsChart.defaultSeriesType];
15711  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 =
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 requires it
15716  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15725  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 Chart.render,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 after Chart.addSeries and Series.remove.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15739  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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)) {
15749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
15751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) { // #3341 avoid mutual linking
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(series.options.visible, linkedTo.options.visible, series.visible); // #3879
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15762  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15772  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15784  
15785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15788  
15789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
15799  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
15808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15816  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
15819  
15820  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15823  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
15832  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15836  
15837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
15839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
15842  
15843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15846  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
15848  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15856  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
15859  
15860  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
15865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15869  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
15874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
15879  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
15882  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
15885  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15890  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15893  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15895  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Show chart credits based on config options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15901  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
15905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 || ''),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
15907  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
15919  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
15921  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15924  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 up memory usage
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
15943  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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');
15946  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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--;
15950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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');
15951  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
15954  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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:
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
15957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15961  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15966  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15972  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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:
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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([
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
15976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
15980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
15981  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
15984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15986  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
15989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = '';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15994  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15996  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 in chart) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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[i];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16011  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
16018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16024  
16025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16031  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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()) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16036  
16037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
16039  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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');
16042  
16043  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
16046  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
16049  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
16052  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
16055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16057  
16058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
16059  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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');
16064  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
16071  
16072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
16074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
16075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16076  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.cloneRenderTo(true);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
16086  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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)
16090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
16093  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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');
16096  
16097  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
16100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16102  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16106  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16108  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16117  
16118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16127  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @constructor Point
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = function() {};
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.prototype = {
16136  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 #init
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
16145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
16148  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16153  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16155  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16157  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
16159  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
16161  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16165  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
16176  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 #applyOptions
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16194  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
16196  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
16199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16200  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16205  
16206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
16211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16214  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16219  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
16223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16232  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16235  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16248  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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') {
16257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16272  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
16276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16278  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
16292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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' : '') +
16294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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' : '') +
16295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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' : '') +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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-' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 : '') +
16298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 : '') +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ? ' ' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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', '') : '');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16302  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16312  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16317  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16321  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16324  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16334  
16335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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--;
16336  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16343  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
16346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16348  
16349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
16351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16354  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16358  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16362  
16363  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16381  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
16386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
16405  
16406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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, ''),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 || '',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 || '';
16412  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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}');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16421  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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, {
16423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16438  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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])) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
16442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16443  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
16458  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
16461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16492  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 base function which all other series types inherit from. The data in the series is stored
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 various arrays.
16496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
16497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 the series data length
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * exceeds the cropThreshold, or if the data is grouped, series.data doesn't contain all the points. It
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 contains the points that have been created on demand.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 objects. In case of cropping,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 cropped-away points are not part of this array. The series.points array starts at series.cropStart
16504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * compared to series.data and series.options.data. If however the series data is grouped, these can't
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 correlated one to one.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 to series.data and series.points.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 to series.data and series.points.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @constructor Series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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} chart - The chart instance.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 series options.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16514  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {},
16530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {
16533  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16537  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {
16543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16548  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16550  
16551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16552  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {
16562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {}
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16571  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
16575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
16576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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, // draw points outside the plot area when the number of points is less than this
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: true for standalone series, false for linked series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {
16597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {
16603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16608  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16610  
16611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {}
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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> {series.name}: <b>{point.y}</b>'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: '',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: ''
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //}
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
16628  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 Series.prototype */ {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'], // each point's x and y values are stored in this.xData and this.yData
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
16639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { eventType,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16645  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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); // merge with plotOptions
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
16652  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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: '',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16660  
16661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 (eventType in events) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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, events[eventType]);
16665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 && options.point.events && options.point.events.click) ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16673  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'] = [];
16680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
16682  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16687  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16694  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
16696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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));
16697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16698  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
16705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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 >=
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
16723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16732  
16733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
16736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
16737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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}
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) { // repeat for xAxis and yAxis
16748  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) { // loop through the chart's axis objects
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16751  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 of the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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, or if undefined, use the first axis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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[AXIS] === axisOptions.index) ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 && seriesOptions[AXIS] === axisOptions.id) ||
16756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 && axisOptions.index === 0)) {
16757  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
16760  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16763  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16768  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
16772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16773  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 arrays like
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 and yData for quick lookup to find extremes and more. For multidimensional series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * like bubble and map, this can be extended with arrays like zData and valueData by
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * adding to the series.parallelArrays array.
16782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ? series.toYData(point) : point[key];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 as arguments
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(series[key + 'Data'], Array.prototype.slice.call(args, 2));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 pointInterval options.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 only used if an x value is not given for the point that calls autoIncrement.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
16805  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(this.pointInterval, options.pointInterval, 1);
16815  
16816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
16819  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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](date[Date.hcGetDate]() + pointInterval);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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](date[Date.hcGetMonth]() + pointInterval);
16824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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](date[Date.hcGetFullYear]() + pointInterval);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16828  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16834  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 || {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 || {},
16845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16848  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16850  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 otherwise, default
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 like column.animation would be overwritten by the general option.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // But issues have been raised here (#3881), and the solution may be to distinguish
16854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // between default option and userOptions like in the tooltip below.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
16860  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.tooltip,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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] && userPlotOptions[this.type].tooltip,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
16870  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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] && userPlotOptions[this.type].stickyTracking,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
16883  
16884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
16889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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.negativeColor || options.negativeFillColor) && !options.zones) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'] || options.threshold || 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
16896  
16897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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)) {
16904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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({
16905  
16906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16908  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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']
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16926  
16927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 Series.update()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(userOptions[indexName], userOptions['_' + indexName]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
16942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
16945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
16946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16950  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16954  
16955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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; // #4359, selected slice got series.color even when colorByPoint was set.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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('color', this.options.color || defaultPlotOptions[this.type].color, this.chart.options.colors);
16960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
16967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16968  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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('symbol', seriesMarkerOption.symbol, this.chart.options.symbols);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16971  
16972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16973  
16974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Replace the series data with a new set of data
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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} data
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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} redraw
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
16989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
16995  
16996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 || [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
16999  
17000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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 is
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // cheaper, allows animation, and keeps references to points.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (updatePoints !== false && dataLength && oldDataLength === dataLength && !series.cropped && !series.hasGroupedData && series.visible) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
17005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17014  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
17016  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 allowed. The
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 value is tested, and we assume that all the rest are defined the same
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // way. Although the 'for' loops are similar, they are repeated inside each
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // if-else conditional for max performance.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
17027  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
17031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17034  
17035  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
17040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)) { // assume all points are arrays
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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]
17043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
17053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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); // Highcharts expects configs to be numbers or arrays in turbo mode
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(pt, [data[i]]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17069  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 handling CSV or JSON
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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])) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17074  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [];
17076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17077  
17078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17085  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17090  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17096  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17108  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 longer
17111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * than the crop threshold. This saves computing time for large series.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 below
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
17117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
17122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = series.getExtremesFromAll || options.getExtremesFromAll, // #4599
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
17131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17134  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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. Return false to pass
17136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 message on to override methods like in data grouping.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (isCartesian && !series.isDirty && !xAxis.isDirty && !series.yAxis.isDirty && !force) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17140  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17146  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (isCartesian && series.sorted && !getExtremesFromAll && (!cropThreshold || dataLength > cropThreshold || series.forceCrop)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (processedXData[dataLength - 1] < min || processedXData[0] > max) {
17152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [];
17154  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 (processedXData[0] < min || processedXData[dataLength - 1] > max) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(series.xData, series.yData, min, max);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17164  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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]) :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
17172  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (distance > 0 && (closestPointRange === undefined || distance < closestPointRange)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17175  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 data grouping and
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // navigation in Stock charts (#725) and width calculation of columns (#1900)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17182  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17188  
17189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17190  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17192  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 containing crop start/end
17195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 xData with corresponding part of yData, dataMin and dataMax within the cropped range
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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), // line-type series need one point outside
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
17203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17204  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17212  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17220  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17228  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 away
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * unused points and optionally grouped in Highcharts Stock.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
17238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
17241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17250  
17251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [];
17253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17256  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
17260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(series, dataOptions[cursor], processedXData[i]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
17265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(series, [processedXData[i]].concat(splat(processedYData[i])));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
17271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17274  
17275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 is above cropThreshold, or when
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // swithching view from non-grouped data to grouped data (#637)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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 && (processedDataLength !== (dataLength = data.length) || hasGroupedData)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++) {
17279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) { // when has grouped data, clear all points
17280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17288  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17292  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
17298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(), // #2117, need to compensate for log X axis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17312  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 || [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++) {
17317  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
17320  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 outside the
17322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 range, consider y extremes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = (isNumber(y, true) || isArray(y)) && (!yAxis.positiveValuesOnly || (y.length || y > 0));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = this.getExtremesFromAll || this.options.getExtremesFromAll || this.cropped ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
17326  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
17328  
17329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17341  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
17344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17345  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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}
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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() {
17355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
17360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
17370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = pointPlacement === 'between' || isNumber(pointPlacement),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
17373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17378  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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)) {
17384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
17393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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[(series.negStacks && yValue < (stackThreshold ? 0 : threshold) ? '-' : '') + series.stackKey],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17396  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
17410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (stacking && series.visible && !point.isNull && stack && stack[xValue]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(stackIndicator, xValue, series.index);
17418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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];
17422  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (yBottom === stackThreshold && stackIndicator.key === stack[xValue].base) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17429  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = pointStack.total && (point.y / pointStack.total * 100);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17433  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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(series.pointXOffset || 0, series.barW || 0);
17436  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17438  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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) ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17443  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17448  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = (typeof yValue === 'number' && yValue !== Infinity) ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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, yAxis.translate(yValue, 0, 1, 0, 1)), 1e5) : // #3201
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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;
17453  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 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 = plotY !== undefined && plotY >= 0 && plotY <= yAxis.len && // #3519
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< 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 && plotX <= xAxis.len;
17456  
17457  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(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 ? correctFloat(xAxis.translate(xValue, 0, 0, 0, 1, pointPlacement)) : plotX; // #1514, #5383, #5518
17460  
17461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(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);
17462  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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;
17466  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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(closestPointRangePx, Math.abs(plotX - lastPlotX));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
17474  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); },
17480  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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) { // #3916, #5029
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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(point.plotX, point.plotY, chart.inverted)) { // #5085
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); },
17493  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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, first to initiate
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); * animating the clip then the second time without the animation to set the final clip.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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 || ['_sharedClip', animation && animation.duration, animation && animation.easing, clipBox.height, options.xAxis, options.yAxis].join(','), // #4526
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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'];
17508  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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 in the chart, use that.
17510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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) {
17511  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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;
17515  
17516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); };
17527  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
17529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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;
17533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
17535  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
17541  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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) {
17544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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];
17546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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']) {
17554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); },
17559  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
17567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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;
17569  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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) {
17572  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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);
17574  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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;
17578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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']) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
17589  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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;
17592  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); },
17595  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); },
17603  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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.
17606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
17608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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}
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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.markerGroup,
17627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); );
17635  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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) {
17637  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 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++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 || {};
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17646  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
17649  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { );
17658  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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)) {
17663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17673  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
17677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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'));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17679  
17680  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17684  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17690  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
17692  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 || {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17706  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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];
17710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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];
17712  
17713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17719  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17723  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17732  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17734  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
17736  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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...)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
17742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) || {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
17749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
17753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17757  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17761  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
17764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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]) || {};
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
17772  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17778  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 {
17780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
17785  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
17787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 || [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { prop,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17799  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
17801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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');
17802  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
17804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
17805  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
17808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
17814  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17819  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
17825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17829  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
17832  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 (prop in series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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[prop] instanceof SVGElement && !series[prop].survive) { // Survive provides a hook for not destroying
17836  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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' ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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' :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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';
17841  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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[prop][destroy]();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17845  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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();
17852  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
17854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 (prop in series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
17858  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 = [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 = [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17870  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17872  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
17884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17886  
17887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17891  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
17899  
17900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
17902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17903  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17907  
17908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17911  
17912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 {
17913  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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];
17916  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
17918  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
17920  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
17922  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 = [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
17927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 = [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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',
17933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ];
17939  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 = [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
17948  
17949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 = [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17957  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
17960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
17963  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
17968  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17971  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
17973  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
17975  
17976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 = [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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',
17987  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ];
17993  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
17995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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([
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 || ''),
17999  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
18002  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
18005  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
18008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
18019  
18020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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])
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
18026  
18027  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
18033  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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';
18038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18039  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
18043  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18045  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
18054  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 || [],
18066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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),
18070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
18079  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
18084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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();
18090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18091  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
18095  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 ?
18097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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));
18099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
18101  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18105  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18130  
18131  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
18151  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 {
18156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
18157  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18161  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
18172  
18173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
18175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
18178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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]) {
18184  
18185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18199  
18200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18204  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
18206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
18208  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
18211  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
18215  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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, series.dataLabelsGroup and
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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. On subsequent calls, the group will only be adjusted to the updated plot size.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
18223  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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(name)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
18231  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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('highcharts-series-' + this.index + ' highcharts-' + this.type + '-series highcharts-color-' + this.colorIndex +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 || ''));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18235  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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'](this.getPlotBox());
18240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
18242  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
18246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
18250  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
18258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
18263  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
18266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
18271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 hidden,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 looks bad in other oldIE
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 && chart.renderer.isSVG && animObject(options.animation).duration,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
18277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
18280  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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',
18284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { );
18297  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18302  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
18305  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18311  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });*/
18317  
18318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18322  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18327  
18328  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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.drawTracker && series.options.enableMouseTracking !== false) {
18331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18333  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
18336  
18337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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. Applies to columns etc. (#3839).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18341  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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();
18345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18346  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 overwrite the animation.complete option
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // which should be available to the user).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
18353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18354  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 data is in accordance with what you see
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
18359  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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, // cache it here as it is set to false in render, but used after
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
18370  
18371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
18372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18385  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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();
18388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
18392  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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'],
18398  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
18402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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({
18406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 ? xAxis.len - e.chartY + xAxis.pos : e.chartX - xAxis.pos,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 ? yAxis.len - e.chartX + yAxis.pos : e.chartY - yAxis.pos
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
18410  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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() {
18418  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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)
18420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
18421  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
18425  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
18428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
18431  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
18433  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
18441  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
18443  
18444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
18445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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(points.slice(0, median), depth + 1, dimensions),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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(points.slice(median + 1), depth + 1, dimensions)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
18450  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18453  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 and null points filtered out (#3873)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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, !series.directTouch // For line-type series restrict to plot area, but column-type series not (#3916, #4511)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
18466  
18467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
18470  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
18473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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 ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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])) ? Math.pow(p1[kdX] - p2[kdX], 2) : null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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])) ? Math.pow(p1[kdY] - p2[kdY], 2) : null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
18484  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18488  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
18495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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;
18498  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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);
18500  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 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';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< 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';
18505  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 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);
18509  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? 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);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< 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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< 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 wether to check side B or not
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< 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]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 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(search, tree[sideB], depth + 1, dimensions);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< 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] ? nPoint2 : ret);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18519  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); return ret;
18521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18522  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (!this.kdTree && !this.buildingKdTree) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.buildKDTree();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18526  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (this.kdTree) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); return _search(point, this.kdTree, kdDimensions, kdDimensions);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18531  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }); // end Series prototype
18533  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var addEvent = H.addEvent,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); animate = H.animate,
18543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); Axis = H.Axis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); Chart = H.Chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); createElement = H.createElement,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); css = H.css,
18547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); defined = H.defined,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); erase = H.erase,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); extend = H.extend,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); fireEvent = H.fireEvent,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); inArray = H.inArray,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); isNumber = H.isNumber,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); isObject = H.isObject,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); merge = H.merge,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); pick = H.pick,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); Point = H.Point,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); Series = H.Series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); seriesTypes = H.seriesTypes,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); setAnimation = H.setAnimation,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); splat = H.splat;
18562  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Extend the Chart prototype for dynamic methods
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); extend(Chart.prototype, /** @lends Highcharts.Chart.prototype */ {
18565  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Add a series dynamically after time
18568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Object} options The config options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Boolean} redraw Whether to redraw the chart after adding. Defaults to true.
18571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Boolean|Object} animation Whether to apply animation, and optionally animation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * configuration
18573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @return {Object} series The newly created series object
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
18576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); addSeries: function(options, redraw, animation) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart = this;
18579  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); redraw = pick(redraw, true); // defaults to true
18582  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); fireEvent(chart, 'addSeries', {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); options: options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }, function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series = chart.initSeries(options);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.isDirtyLegend = true; // the series array is out of sync with the display
18589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.linkSeries();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (redraw) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.redraw(animation);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18595  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); return series;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
18598  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Add an axis to the chart
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Object} options The axis option
18602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Boolean} isX Whether it is an X axis or a value axis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); addAxis: function(options, isX, redraw, animation) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var key = isX ? 'xAxis' : 'yAxis',
18606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chartOptions = this.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); userOptions = merge(options, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); index: this[key].length,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); isX: isX
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
18611  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); new Axis(this, userOptions); // eslint-disable-line no-new
18613  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Push the new axis options to the chart options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chartOptions[key] = splat(chartOptions[key] || {});
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chartOptions[key].push(userOptions);
18617  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (pick(redraw, true)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.redraw(animation);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
18622  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Dim the chart and show a loading text or symbol
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {String} str An optional text to show in the loading label instead of the default one
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); showLoading: function(str) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var chart = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); options = chart.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); loadingDiv = chart.loadingDiv,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); loadingOptions = options.loading,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); setLoadingSize = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (loadingDiv) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); css(loadingDiv, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); left: chart.plotLeft + 'px',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); top: chart.plotTop + 'px',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); width: chart.plotWidth + 'px',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); height: chart.plotHeight + 'px'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); };
18642  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // create the layer at the first call
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (!loadingDiv) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.loadingDiv = loadingDiv = createElement('div', {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); className: 'highcharts-loading highcharts-loading-hidden'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }, null, chart.container);
18648  
18649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.loadingSpan = createElement(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); 'span', {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); className: 'highcharts-loading-inner'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); loadingDiv
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); addEvent(chart, 'redraw', setLoadingSize); // #1080
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18658  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); loadingDiv.className = 'highcharts-loading';
18660  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Update text
18662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.loadingSpan.innerHTML = str || options.lang.loading;
18663  
18664  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Update visuals
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); css(loadingDiv, extend(loadingOptions.style, {
18667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); zIndex: 10
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); css(chart.loadingSpan, loadingOptions.labelStyle);
18670  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Show it
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (!chart.loadingShown) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); css(loadingDiv, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); opacity: 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); display: ''
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); animate(loadingDiv, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); opacity: loadingOptions.style.opacity || 0.5
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }, {
18680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); duration: loadingOptions.showDuration || 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18683  
18684  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.loadingShown = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); setLoadingSize();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
18688  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Hide the loading layer
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); hideLoading: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var options = this.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); loadingDiv = this.loadingDiv;
18695  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (loadingDiv) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); loadingDiv.className = 'highcharts-loading highcharts-loading-hidden';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); animate(loadingDiv, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); opacity: 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); duration: options.loading.hideDuration || 100,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); complete: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); css(loadingDiv, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); display: 'none'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
18709  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.loadingShown = false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
18713  
18714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * These properties cause isDirtyBox to be set to true when updating. Can be extended from plugins.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); propsRequireDirtyBox: ['backgroundColor', 'borderColor', 'borderWidth', 'margin', 'marginTop', 'marginRight',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); 'marginBottom', 'marginLeft', 'spacing', 'spacingTop', 'spacingRight', 'spacingBottom', 'spacingLeft',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); 'borderRadius', 'plotBackgroundColor', 'plotBackgroundImage', 'plotBorderColor', 'plotBorderWidth',
18720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); 'plotShadow', 'shadow'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); ],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * These properties cause all series to be updated when updating. Can be
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * extended from plugins.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
18727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); propsRequireUpdateSeries: ['chart.inverted', 'chart.polar',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); 'chart.ignoreHiddenSeries', 'chart.type', 'colors', 'plotOptions'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); ],
18730  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
18732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Chart.update function that takes the whole options stucture.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); update: function(options, redraw) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var key,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); adders = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); credits: 'addCredits',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); title: 'setTitle',
18739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); subtitle: 'setSubtitle'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); optionsChart = options.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); updateAllAxes,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); updateAllSeries,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); newWidth,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); newHeight;
18746  
18747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // If the top-level chart option is present, some special updates are required
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (optionsChart) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); merge(true, this.options.chart, optionsChart);
18750  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Setter function
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if ('className' in optionsChart) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.setClassName(optionsChart.className);
18754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18755  
18756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if ('inverted' in optionsChart || 'polar' in optionsChart) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Parse options.chart.inverted and options.chart.polar together
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // with the available series.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.propFromSeries();
18760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); updateAllAxes = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18762  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if ('alignTicks' in optionsChart) { // #6452
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); updateAllAxes = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18766  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); for (key in optionsChart) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (optionsChart.hasOwnProperty(key)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (inArray('chart.' + key, this.propsRequireUpdateSeries) !== -1) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); updateAllSeries = true;
18771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Only dirty box
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (inArray(key, this.propsRequireDirtyBox) !== -1) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.isDirtyBox = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18776  
18777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18779  
18780  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if ('style' in optionsChart) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.renderer.setStyle(optionsChart.style);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18784  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18786  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Some option stuctures correspond one-to-one to chart objects that have
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // update methods, for example
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // options.credits => chart.credits
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // options.legend => chart.legend
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // options.title => chart.title
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // options.tooltip => chart.tooltip
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // options.subtitle => chart.subtitle
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // options.mapNavigation => chart.mapNavigation
18795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // options.navigator => chart.navigator
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // options.scrollbar => chart.scrollbar
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); for (key in options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (this[key] && typeof this[key].update === 'function') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this[key].update(options[key], false);
18800  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // If a one-to-one object does not exist, look for an adder function
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); } else if (typeof this[adders[key]] === 'function') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this[adders[key]](options[key]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18805  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (key !== 'chart' && inArray(key, this.propsRequireUpdateSeries) !== -1) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); updateAllSeries = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18810  
18811  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (options.colors) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.options.colors = options.colors;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18815  
18816  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (options.plotOptions) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); merge(true, this.options.plotOptions, options.plotOptions);
18819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18820  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Setters for collections. For axes and series, each item is referred
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // by an id. If the id is not found, it defaults to the corresponding
18823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // item in the collection, so setting one series without an id, will
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // update the first series in the chart. Setting two series without
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // an id will update the first and the second respectively (#6019)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // chart.update and responsive.
18827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); each(['xAxis', 'yAxis', 'series', 'colorAxis', 'pane'], function(coll) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (options[coll]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); each(splat(options[coll]), function(newOptions, i) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var item = (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); defined(newOptions.id) &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.get(newOptions.id)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); ) || this[coll][i];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (item && item.coll === coll) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); item.update(newOptions, false);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }, this);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }, this);
18840  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (updateAllAxes) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); each(this.axes, function(axis) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); axis.update({}, false);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18846  
18847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Certain options require the whole series structure to be thrown away
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // and rebuilt
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (updateAllSeries) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); each(this.series, function(series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.update({}, false);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
18853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18854  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // For loading, just update the options, do not redraw
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (options.loading) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); merge(true, this.options.loading, options.loading);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18859  
18860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Update size. Redraw is forced.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); newWidth = optionsChart && optionsChart.width;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); newHeight = optionsChart && optionsChart.height;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if ((isNumber(newWidth) && newWidth !== this.chartWidth) ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); (isNumber(newHeight) && newHeight !== this.chartHeight)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.setSize(newWidth, newHeight);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); } else if (pick(redraw, true)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.redraw();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
18870  
18871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Setter function to allow use from chart.update
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); setSubtitle: function(options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.setTitle(undefined, options);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18877  
18878  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
18880  
18881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // extend the Point prototype for dynamic methods
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); extend(Point.prototype, /** @lends Point.prototype */ {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
18884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Point.update with new options (typically x/y data) and optionally redraw the series.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); *
18886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Object} options Point options as defined in the series.data array
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Boolean} redraw Whether to redraw the chart or wait for an explicit call
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Boolean|Object} animation Whether to apply animation, and optionally animation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * configuration
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); update: function(options, redraw, animation, runEvent) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var point = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series = point.series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); graphic = point.graphic,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); i,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart = series.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); seriesOptions = series.options;
18898  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); redraw = pick(redraw, true);
18900  
18901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); function update() {
18902  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); point.applyOptions(options);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Update visuals
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (point.y === null && graphic) { // #4146
18907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); point.graphic = graphic.destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (isObject(options, true)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Destroy so we can get new elements
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (graphic && graphic.element) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (options && options.marker && options.marker.symbol) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); point.graphic = graphic.destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (options && options.dataLabels && point.dataLabel) { // #2468
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); point.dataLabel = point.dataLabel.destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18920  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // record changes in the parallel arrays
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); i = point.index;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.updateParallelArrays(point, i);
18924  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Record the options to options.data. If the old or the new config
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // is an object, use point options, otherwise use raw options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // (#4701, #4916).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); seriesOptions.data[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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); isObject(seriesOptions.data[i], true) ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); isObject(options, true)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); ) ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); point.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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); options;
18934  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // redraw
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.isDirty = series.isDirtyData = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (!series.fixedBox && series.hasCartesianSeries) { // #1906, #2320
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.isDirtyBox = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18940  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (seriesOptions.legendType === 'point') { // #1831, #1885
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.isDirtyLegend = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (redraw) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.redraw(animation);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
18948  
18949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Fire the event with a default handler of doing the update
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (runEvent === false) { // When called from setData
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); update();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); point.firePointEvent('update', {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); options: options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }, update);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Remove a point and optionally redraw the series and if necessary the axes
18961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Boolean} redraw Whether to redraw the chart or wait for an explicit call
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Boolean|Object} animation Whether to apply animation, and optionally animation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * configuration
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
18965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); remove: function(redraw, animation) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.series.removePoint(inArray(this, this.series.data), redraw, animation);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
18969  
18970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Extend the series prototype for dynamic methods
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); extend(Series.prototype, /** @lends Series.prototype */ {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Add a point dynamically after chart load time
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Object} options Point options as given in series.data
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Boolean} redraw Whether to redraw the chart or wait for an explicit call
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Boolean} shift If shift is true, a point is shifted off the start
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * of the series as one is appended to the end.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Boolean|AnimationOptions} animation Whether to apply animation, and optionally animation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * configuration
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); addPoint: function(options, redraw, shift, animation) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); seriesOptions = series.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); data = series.data,
18985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart = series.chart,
18986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); xAxis = series.xAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); names = xAxis && xAxis.hasNames && xAxis.names,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); dataOptions = seriesOptions.data,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); point,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); isInTheMiddle,
18991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); xData = series.xData,
18992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); i,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); x;
18994  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Optional redraw, defaults to true
18996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); redraw = pick(redraw, true);
18997  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Get options and push the point to xData, yData and series.options. In series.generatePoints
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // the Point instance will be created on demand and pushed to the series.data array.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); point = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series: series
19002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.pointClass.prototype.applyOptions.apply(point, [options]);
19004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); x = point.x;
19005  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Get the insertion 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); i = xData.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (series.requireSorting && x < xData[i - 1]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); isInTheMiddle = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); while (i && xData[i - 1] > x) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); i--;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
19014  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.updateParallelArrays(point, 'splice', i, 0, 0); // insert undefined item
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.updateParallelArrays(point, i); // update it
19017  
19018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (names && point.name) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); names[x] = point.name;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); dataOptions.splice(i, 0, options);
19022  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (isInTheMiddle) {
19024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.data.splice(i, 0, null);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.processData();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
19027  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Generate points to be added to the legend (#1329)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (seriesOptions.legendType === 'point') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.generatePoints();
19031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
19032  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Shift the first point off the parallel arrays
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (shift) {
19035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (data[0] && data[0].remove) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); data[0].remove(false);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); data.shift();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.updateParallelArrays(point, 'shift');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); dataOptions.shift();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // redraw
19046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.isDirty = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.isDirtyData = true;
19048  
19049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (redraw) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.redraw(animation); // Animation is set anyway on redraw, #5665
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
19053  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Remove a point (rendered or not), by index
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); removePoint: function(i, redraw, animation) {
19058  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); data = series.data,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); point = data[i],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); points = series.points,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart = series.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); remove = function() {
19065  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (points && points.length === data.length) { // #4935
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); points.splice(i, 1);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
19069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); data.splice(i, 1);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.options.data.splice(i, 1);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.updateParallelArrays(point || {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series: series
19073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }, 'splice', i, 1);
19074  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); point.destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
19078  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // redraw
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.isDirty = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.isDirtyData = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (redraw) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.redraw();
19084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); };
19086  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); setAnimation(animation, chart);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); redraw = pick(redraw, true);
19089  
19090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Fire the event with a default handler of removing the point
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); point.firePointEvent('remove', null, remove);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); remove();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Remove a series and optionally redraw the chart
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Boolean} redraw Whether to redraw the chart or wait for an explicit call
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Boolean|Object} animation Whether to apply animation, and optionally animation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * configuration
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); remove: function(redraw, animation, withEvent) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart = series.chart;
19108  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); function remove() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Destroy elements
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Redraw
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.isDirtyLegend = chart.isDirtyBox = true;
19116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.linkSeries();
19117  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (pick(redraw, true)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.redraw(animation);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
19122  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Fire the event with a default handler of removing the point
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (withEvent !== false) {
19125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); fireEvent(series, 'remove', null, remove);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); remove();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Series.update with a new set of options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); update: function(newOptions, redraw) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // must use user options when changing type because this.options is merged
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // in with type specific plotOptions
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); oldOptions = this.userOptions,
19140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); oldType = this.oldType || this.type,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); newType = newOptions.type || oldOptions.type || chart.options.chart.type,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); proto = seriesTypes[oldType].prototype,
19143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); preserve = ['group', 'markerGroup', 'dataLabelsGroup'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); n;
19145  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // If we're changing type or zIndex, create new groups (#3380, #3404)
19147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if ((newType && newType !== oldType) || newOptions.zIndex !== undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); preserve.length = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
19150  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Make sure groups are not destroyed (#3094)
19152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); each(preserve, function(prop) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); preserve[prop] = series[prop];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); delete series[prop];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Do the merge, with some forced options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); newOptions = merge(oldOptions, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); animation: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); index: this.index,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); pointStart: this.xData[0] // when updating after addPoint
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }, {
19163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); data: this.options.data
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }, newOptions);
19165  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Destroy the series and delete all properties. Reinsert all methods
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // and properties from the new type prototype (#2270, #3719)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.remove(false, null, false);
19169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); for (n in proto) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this[n] = undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); extend(this, seriesTypes[newType || oldType].prototype);
19173  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Re-register groups (#3094)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); each(preserve, function(prop) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series[prop] = preserve[prop];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
19178  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.init(chart, newOptions);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.oldType = oldType;
19181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.linkSeries(); // Links are lost in this.remove (#3028)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (pick(redraw, true)) {
19183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.redraw(false);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
19187  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Extend the Axis.prototype for dynamic methods
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); extend(Axis.prototype, /** @lends Axis.prototype */ {
19190  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Axis.update with a new options structure
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); update: function(newOptions, redraw) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var chart = this.chart;
19196  
19197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); newOptions = chart.options[this.coll][this.options.index] = merge(this.userOptions, newOptions);
19198  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.destroy(true);
19200  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.init(chart, extend(newOptions, {
19202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); events: undefined
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }));
19204  
19205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.isDirtyBox = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (pick(redraw, true)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.redraw();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Remove the axis from the chart
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
19214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); remove: function(redraw) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); key = this.coll, // xAxis or yAxis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); axisSeries = this.series,
19218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); i = axisSeries.length;
19219  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Remove associated series (#2687)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); while (i--) {
19222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (axisSeries[i]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); axisSeries[i].remove(false);
19224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
19226  
19227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Remove the axis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); erase(chart.axes, this);
19229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); erase(chart[key], this);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.options[key].splice(this.options.index, 1);
19231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); each(chart[key], function(axis, i) { // Re-index, #1706
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); axis.options.index = i;
19233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.isDirtyBox = true;
19236  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (pick(redraw, true)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart.redraw();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
19240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
19241  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Update the axis title by options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); setTitle: function(newTitleOptions, redraw) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.update({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); title: newTitleOptions
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }, redraw);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Set new axis categories and optionally redraw
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Array} categories
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @param {Boolean} redraw
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); setCategories: function(categories, redraw) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); this.update({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); categories: categories
19259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }, redraw);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
19261  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
19263  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * (c) 2010-2017 Torstein Honsi
19268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var animObject = H.animObject,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); color = H.color,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); each = H.each,
19274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); extend = H.extend,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); isNumber = H.isNumber,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); LegendSymbolMixin = H.LegendSymbolMixin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); merge = H.merge,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); noop = H.noop,
19279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); pick = H.pick,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); Series = H.Series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); seriesType = H.seriesType,
19282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); svg = H.svg;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
19284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * The column series type.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); *
19286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @constructor seriesTypes.column
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @augments Series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); seriesType('column', 'line', {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); borderRadius: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); //colorByPoint: undefined,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); crisp: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); groupPadding: 0.2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); //grouping: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); marker: null, // point options are specified in the base options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); pointPadding: 0.1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); //pointWidth: null,
19298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); minPointLength: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); cropThreshold: 50, // when there are more points, they will not animate out of the chart on xAxis.setExtremes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); pointRange: null, // null means auto, meaning 1 in a categorized axis and least distance between points if not categories
19301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); states: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); hover: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); halo: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); brightness: 0.1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); shadow: false
19307  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
19309  
19310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); select: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); color: '#cccccc',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); borderColor: '#000000',
19313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); shadow: false
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
19315  
19316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); dataLabels: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); align: null, // auto
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); verticalAlign: null, // auto
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); y: null
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
19322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); softThreshold: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); startFromThreshold: true, // false doesn't work well: http://jsfiddle.net/highcharts/hz8fopan/14/
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); stickyTracking: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); tooltip: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); distance: 6
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
19328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); threshold: 0,
19329  
19330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); borderColor: '#ffffff'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // borderWidth: 1
19332  
19333  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }, /** @lends seriesTypes.column.prototype */ {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); cropShoulder: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); directTouch: true, // When tooltip is not shared, this series (and derivatives) requires direct touch/hover. KD-tree does not apply.
19337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); trackerGroups: ['group', 'dataLabelsGroup'],
19338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); negStacks: true, // use separate negative stacks, unlike area stacks where a negative
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // point is substracted from previous (#1910)
19340  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Initialize the series. Extends the basic Series.init method by
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * marking other series of the same type as dirty.
19344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @function #init
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @memberOf seriesTypes.column
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * @returns {void}
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); init: function() {
19350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); Series.prototype.init.apply(this, arguments);
19351  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); chart = series.chart;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // if the series is added dynamically, force redraw of other
19356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // series affected by a new column
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (chart.hasRendered) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); each(chart.series, function(otherSeries) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (otherSeries.type === series.type) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); otherSeries.isDirty = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Return the width and x offset of the columns adjusted for grouping, groupPadding, pointPadding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * pointWidth etc.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); getColumnMetrics: function() {
19371  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); options = series.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); xAxis = series.xAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); yAxis = series.yAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); reversedXAxis = xAxis.reversed,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); stackKey,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); stackGroups = {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); columnCount = 0;
19380  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Get the total number of column type series.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // This is called on every series. Consider moving this logic to a
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // chart.orderStacks() function and call it on init, addSeries and removeSeries
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (options.grouping === false) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); columnCount = 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); each(series.chart.series, function(otherSeries) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var otherOptions = otherSeries.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); otherYAxis = otherSeries.yAxis,
19390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); columnIndex;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (otherSeries.type === series.type && otherSeries.visible &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); yAxis.len === otherYAxis.len && yAxis.pos === otherYAxis.pos) { // #642, #2086
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (otherOptions.stacking) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); stackKey = otherSeries.stackKey;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (stackGroups[stackKey] === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); stackGroups[stackKey] = columnCount++;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); columnIndex = stackGroups[stackKey];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); } else if (otherOptions.grouping !== false) { // #1162
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); columnIndex = columnCount++;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
19402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); otherSeries.columnIndex = columnIndex;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var categoryWidth = Math.min(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); Math.abs(xAxis.transA) * (xAxis.ordinalSlope || options.pointRange || xAxis.closestPointRange || xAxis.tickInterval || 1), // #2610
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); xAxis.len // #1535
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); ),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); groupPadding = categoryWidth * options.groupPadding,
19412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); groupWidth = categoryWidth - 2 * groupPadding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); pointOffsetWidth = groupWidth / (columnCount || 1),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); pointWidth = Math.min(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); options.maxPointWidth || xAxis.len,
19416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); pick(options.pointWidth, pointOffsetWidth * (1 - 2 * options.pointPadding))
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); ),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); pointPadding = (pointOffsetWidth - pointWidth) / 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); colIndex = (series.columnIndex || 0) + (reversedXAxis ? 1 : 0), // #1251, #3737
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); pointXOffset = pointPadding + (groupPadding + colIndex *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); pointOffsetWidth - (categoryWidth / 2)) *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); (reversedXAxis ? -1 : 1);
19423  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Save it for reading in linked series (Error bars particularly)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); series.columnMetrics = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); width: pointWidth,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); offset: pointXOffset
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); return series.columnMetrics;
19430  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); },
19432  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); * Make the columns crisp. The edges are rounded to the nearest full pixel.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); crispCol: function(x, y, w, h) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); var chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); borderWidth = this.borderWidth,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); xCrisp = -(borderWidth % 2 ? 0.5 : 0),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); yCrisp = borderWidth % 2 ? 0.5 : 1,
19441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); right,
19442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); bottom,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); fromTop;
19444  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (chart.inverted && chart.renderer.isVML) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); yCrisp += 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
19448  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Horizontal. We need to first compute the exact right edge, then round it
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // and compute the width from there.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); if (this.options.crisp) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); right = Math.round(x + w) + xCrisp;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); x = Math.round(x) + xCrisp;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); w = right - 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); }
19456  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); // Vertical
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); bottom = Math.round(y + h) + yCrisp;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret); fromTop = Math.abs(y) <= 0.5 && bottom > 0.5; // #4504, #4656
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > y = Math.round(y) + yCrisp;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > h = bottom - y;
19462  
19463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > // Top edges are exceptions
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > if (fromTop && h) { // #5146
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > y -= 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > h += 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > return {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > x: x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > y: y,
19472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > width: w,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > height: h
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > },
19476  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > * Translate each point to the plot area coordinate system and find shape positions
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > translate: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > chart = series.chart,
19483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > options = series.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom > dense = series.dense = series.closestPointRange * series.xAxis.transA < 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, borderWidth = series.borderWidth = pick(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, options.borderWidth,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, dense ? 0 : 1 // #3635
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, ),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, yAxis = series.yAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, threshold = options.threshold,
19491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, translatedThreshold = series.translatedThreshold = yAxis.getThreshold(threshold),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, minPointLength = pick(options.minPointLength, 5),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, metrics = series.getColumnMetrics(),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, pointWidth = metrics.width,
19495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, seriesBarW = series.barW = Math.max(pointWidth, 1 + 2 * borderWidth), // postprocessed for border width
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, pointXOffset = series.pointXOffset = metrics.offset;
19497  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, if (chart.inverted) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, translatedThreshold -= 0.5; // #3355
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, }
19501  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, // When the pointPadding is 0, we want the columns to be packed tightly, so we allow individual
19503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, // columns to have individual sizes. When pointPadding is greater, we strive for equal-width
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, // columns (#2694).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, if (options.pointPadding) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, seriesBarW = Math.ceil(seriesBarW);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, }
19508  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, Series.prototype.translate.apply(series);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, // Record the new values
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, each(series.points, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, var yBottom = pick(point.yBottom, translatedThreshold),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, safeDistance = 999 + Math.abs(yBottom),
19515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 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)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, barX = point.plotX + pointXOffset,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, barW = seriesBarW,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, barY = Math.min(plotY, yBottom),
19519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, up,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, barH = Math.max(plotY, yBottom) - barY;
19521  
19522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, // Handle options.minPointLength
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2, if (Math.abs(barH) < minPointLength) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (minPointLength) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { barH = minPointLength;
19526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { up = (!yAxis.reversed && !point.negative) || (yAxis.reversed && point.negative);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { barY = Math.abs(barY - translatedThreshold) > minPointLength ? // stacked
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { yBottom - minPointLength : // keep position
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { translatedThreshold - (up ? minPointLength : 0); // #1485, #4051
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
19532  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Cache for access in polar
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { point.barX = barX;
19535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { point.pointWidth = pointWidth;
19536  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Fix the tooltip on center of grouped columns (#1216, #424, #3648)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 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];
19539  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Register shape type and arguments to be used in drawPoints
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { point.shapeType = 'rect';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { point.shapeArgs = series.crispCol.apply(
19543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { point.isNull ? [point.plotX, yAxis.len / 2, 0, 0] : // #3169, drilldown from null must have a position to work from
19545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { [barX, barY, barW, barH]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { });
19548  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { },
19550  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { getSymbol: noop,
19552  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * Use a solid rectangle like the area series types
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { drawLegendSymbol: LegendSymbolMixin.drawRectangle,
19557  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * Columns have no graph
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { drawGraph: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { this.group[this.dense ? 'addClass' : 'removeClass']('highcharts-dense-data');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { },
19565  
19566  
19567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * Get presentational attributes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { pointAttribs: function(point, state) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { var options = this.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { stateOptions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { ret,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { p2o = this.pointAttrToOptions || {},
19575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { strokeOption = p2o.stroke || 'borderColor',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { strokeWidthOption = p2o['stroke-width'] || 'borderWidth',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { fill = (point && point.color) || this.color,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { stroke = point[strokeOption] || options[strokeOption] ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { this.color || fill, // set to fill when borderColor null
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { strokeWidth = point[strokeWidthOption] ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { options[strokeWidthOption] || this[strokeWidthOption] || 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { dashstyle = options.dashStyle,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { zone,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { brightness;
19585  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Handle zone colors
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (point && this.zones.length) {
19588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { zone = point.getZone();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { fill = (zone && zone.color) || point.options.color || this.color; // When zones are present, don't use point.color (#4267)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
19591  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Select or hover states
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (state) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { stateOptions = merge(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { options.states[state],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { point.options.states && point.options.states[state] || {} // #6401
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { brightness = stateOptions.brightness;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { fill = stateOptions.color ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { (brightness !== undefined && color(fill).brighten(stateOptions.brightness).get()) ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { fill;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { stroke = stateOptions[strokeOption] || stroke;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { strokeWidth = stateOptions[strokeWidthOption] || strokeWidth;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { dashstyle = stateOptions.dashStyle || dashstyle;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
19606  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { ret = {
19608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { 'fill': fill,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { 'stroke': stroke,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { 'stroke-width': strokeWidth
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (options.borderRadius) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { ret.r = options.borderRadius;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
19615  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (dashstyle) {
19617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { ret.dashstyle = dashstyle;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
19619  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { return ret;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { },
19622  
19623  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { /**
19625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * Draw the columns. For bars, the series.group is rotated, so the same coordinates
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * apply for columns and bars. This method is inherited by scatter series.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { drawPoints: function() {
19630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { options = series.options,
19633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { renderer = chart.renderer,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { animationLimit = options.animationLimit || 250,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { shapeArgs;
19636  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // draw the columns
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { each(series.points, function(point) {
19639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { var plotY = point.plotY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { graphic = point.graphic;
19641  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (isNumber(plotY) && point.y !== null) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { shapeArgs = point.shapeArgs;
19644  
19645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (graphic) { // update
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { graphic[chart.pointCount < animationLimit ? 'animate' : 'attr'](
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { merge(shapeArgs)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { );
19649  
19650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { point.graphic = graphic = renderer[point.shapeType](shapeArgs)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { .add(point.group || series.group);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
19654  
19655  
19656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Presentational
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { graphic
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { .attr(series.pointAttribs(point, point.selected && 'select'))
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { .shadow(options.shadow, null, options.stacking && !options.borderRadius);
19660  
19661  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { graphic.addClass(point.getClassName(), true);
19663  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { } else if (graphic) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { point.graphic = graphic.destroy(); // #1269
19667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { },
19670  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * Animate the column heights one by one from zero
19673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * @param {Boolean} init Whether to initialize the animation or run it
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { animate: function(init) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { yAxis = this.yAxis,
19678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { options = series.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { inverted = this.chart.inverted,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { attr = {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { translatedThreshold;
19682  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (svg) { // VML is too slow anyway
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (init) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { attr.scaleY = 0.001;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { translatedThreshold = Math.min(yAxis.pos + yAxis.len, Math.max(yAxis.pos, yAxis.toPixels(options.threshold)));
19687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (inverted) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { attr.translateX = translatedThreshold - yAxis.len;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { attr.translateY = translatedThreshold;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { series.group.attr(attr);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { } else { // run the animation
19695  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { attr[inverted ? 'translateX' : 'translateY'] = yAxis.pos;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { series.group.animate(attr, extend(animObject(series.options.animation), {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Do the scale synchronously to ensure smooth updating (#5030)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { step: function(val, fx) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { series.group.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { scaleY: Math.max(0.001, fx.pos) // #5250
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // delete this function to allow it only once
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { series.animate = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { },
19711  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * Remove this series from the chart
19714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { remove: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { chart = series.chart;
19718  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // column and bar series affects other series of the same type
19720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // as they are either stacked or grouped
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (chart.hasRendered) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { each(chart.series, function(otherSeries) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (otherSeries.type === series.type) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { otherSeries.isDirty = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { });
19727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
19728  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { Series.prototype.remove.apply(series, arguments);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
19731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { });
19732  
19733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * License: www.highcharts.com/license
19739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { var Series = H.Series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { seriesType = H.seriesType;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * The scatter series type
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { seriesType('scatter', 'line', {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { lineWidth: 0,
19747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { findNearestPointBy: 'xy',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { marker: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { enabled: true // Overrides auto-enabling in line series (#3647)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { tooltip: {
19752  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { headerFormat: '<span style="color:{point.color}">\u25CF</span> ' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { '<span style="font-size: 0.85em"> {series.name}</span><br/>',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { pointFormat: 'x: <b>{point.x}</b><br/>y: <b>{point.y}</b><br/>'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Prototype members
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { sorted: false,
19762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { requireSorting: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { noSharedTooltip: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { trackerGroups: ['group', 'markerGroup', 'dataLabelsGroup'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { takeOrdinalPosition: false, // #2342
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { drawGraph: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (this.options.lineWidth) {
19768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { Series.prototype.drawGraph.call(this);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
19770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { });
19772  
19773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { *
19778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { */
19780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { var addEvent = H.addEvent,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { arrayMax = H.arrayMax,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { defined = H.defined,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { extend = H.extend,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { format = H.format,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { map = H.map,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { merge = H.merge,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { noop = H.noop,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { pick = H.pick,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { relativeLength = H.relativeLength,
19791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { Series = H.Series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { seriesTypes = H.seriesTypes,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { stableSort = H.stableSort;
19794  
19795  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * Generatl distribution algorithm for distributing labels of differing size along a
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * confined length in two dimensions. The algorithm takes an array of objects containing
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * a size, a target and a rank. It will place the labels as close as possible to their
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * targets, skipping the lowest ranked labels if necessary.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { H.distribute = function(boxes, len) {
19803  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { var 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { overlapping = true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { origBoxes = boxes, // Original array will be altered with added .pos
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { restBoxes = [], // The outranked overshoot
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { box,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { target,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { total = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { function sortByTarget(a, b) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { return a.target - b.target;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // If the total size exceeds the len, remove those boxes with the lowest rank
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { i = boxes.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { while (i--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { total += boxes[i].size;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
19821  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Sort by rank, then slice away overshoot
19823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (total > len) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { stableSort(boxes, function(a, b) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { return (b.rank || 0) - (a.rank || 0);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { i = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { total = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { while (total <= len) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { total += boxes[i].size;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { i++;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
19833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { restBoxes = boxes.splice(i - 1, boxes.length);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
19835  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Order by target
19837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { stableSort(boxes, sortByTarget);
19838  
19839  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // So far we have been mutating the original array. Now
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // create a copy with target arrays
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { boxes = map(boxes, function(box) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { return {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { size: box.size,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { targets: [box.target]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { };
19847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { });
19848  
19849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { while (overlapping) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Initial positions: target centered in box
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { i = boxes.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { while (i--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { box = boxes[i];
19854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Composite box, average of targets
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { target = (Math.min.apply(0, box.targets) + Math.max.apply(0, box.targets)) / 2;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { box.pos = Math.min(Math.max(0, target - box.size / 2), len - box.size);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Detect overlap and join boxes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { i = boxes.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { overlapping = false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { while (i--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (i > 0 && boxes[i - 1].pos + boxes[i - 1].size > boxes[i].pos) { // Overlap
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { boxes[i - 1].size += boxes[i].size; // Add this size to the previous box
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { boxes[i - 1].targets = boxes[i - 1].targets.concat(boxes[i].targets);
19866  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Overlapping right, push left
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (boxes[i - 1].pos + boxes[i - 1].size > len) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { boxes[i - 1].pos = len - boxes[i - 1].size;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { boxes.splice(i, 1); // Remove this item
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { overlapping = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Now the composite boxes are placed, we need to put the original boxes within them
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { i = 0;
19879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { each(boxes, function(box) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { var posInCompositeBox = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { each(box.targets, function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { origBoxes[i].pos = box.pos + posInCompositeBox;
19883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { posInCompositeBox += origBoxes[i].size;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { i++;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { });
19887  
19888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Add the rest (hidden) boxes and sort by target
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { origBoxes.push.apply(origBoxes, restBoxes);
19890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { stableSort(origBoxes, sortByTarget);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { };
19892  
19893  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * Draw the data labels
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { Series.prototype.drawDataLabels = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { seriesOptions = series.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { options = seriesOptions.dataLabels,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { points = series.points,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { pointOptions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { generalOptions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { hasRendered = series.hasRendered || 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { str,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { dataLabelsGroup,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { defer = pick(options.defer, true),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { renderer = series.chart.renderer;
19909  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (options.enabled || series._hasPointLabels) {
19911  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Process default alignment of data labels for columns
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (series.dlProcessOptions) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { series.dlProcessOptions(options);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
19916  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Create a separate group for the data labels to avoid rotation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { dataLabelsGroup = series.plotGroup(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { 'dataLabelsGroup',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { 'data-labels',
19921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { defer && !hasRendered ? 'hidden' : 'visible', // #5133
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { options.zIndex || 6
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (defer) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { dataLabelsGroup.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { opacity: +hasRendered
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }); // #3300
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (!hasRendered) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { addEvent(series, 'afterAnimate', function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (series.visible) { // #2597, #3023, #3024
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { dataLabelsGroup.show(true);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { dataLabelsGroup[seriesOptions.animation ? 'animate' : 'attr']({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { opacity: 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { duration: 200
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
19942  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Make the labels for each point
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { generalOptions = options;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { each(points, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { var enabled,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { dataLabel = point.dataLabel,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { labelConfig,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { attr,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { name,
19951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { rotation,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { connector = point.connector,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { isNew = !dataLabel,
19954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { style;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Determine if each data label is enabled
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // @note dataLabelAttribs (like pointAttribs) would eradicate
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // the need for dlOptions, and simplify the section below.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { pointOptions = point.dlOptions || (point.options && point.options.dataLabels); // dlOptions is used in treemaps
19959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { enabled = pick(pointOptions && pointOptions.enabled, generalOptions.enabled) && point.y !== null; // #2282, #4641
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (enabled) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Create individual options structure that can be extended without
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // affecting others
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { options = merge(generalOptions, pointOptions);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { labelConfig = point.getLabelConfig();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { str = options.format ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { format(options.format, labelConfig) :
19967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { options.formatter.call(labelConfig, options);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { style = options.style;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { rotation = options.rotation;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Determine the color
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { style.color = pick(options.color, style.color, series.color, '#000000');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Get automated contrast color
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (style.color === 'contrast') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { point.contrastColor = renderer.getContrast(point.color || series.color);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { style.color = options.inside || options.distance < 0 || !!seriesOptions.stacking ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { point.contrastColor : '#000000';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (seriesOptions.cursor) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { style.cursor = seriesOptions.cursor;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
19982  
19983  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { attr = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { //align: align,
19986  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { fill: options.backgroundColor,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { stroke: options.borderColor,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { 'stroke-width': options.borderWidth,
19990  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { r: options.borderRadius || 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { rotation: rotation,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { padding: options.padding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { zIndex: 1
19995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { };
19996  
19997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Remove unused attributes (#947)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { for (name in attr) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (attr[name] === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { delete attr[name];
20001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // If the point is outside the plot area, destroy it. #678, #820
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (dataLabel && (!enabled || !defined(str))) {
20006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { point.dataLabel = dataLabel = dataLabel.destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (connector) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { point.connector = connector.destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Individual labels are disabled if the are explicitly disabled
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // in the point options, or if they fall outside the plot area.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { } else if (enabled && defined(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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // create new label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (!dataLabel) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { dataLabel = point.dataLabel = renderer[rotation ? 'text' : 'label']( // labels don't support rotation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { str,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { 0, -9999,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { options.shape,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { options.useHTML,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { 'data-label'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { dataLabel.addClass(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { 'highcharts-data-label-color-' + point.colorIndex +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { ' ' + (options.className || '') +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { (options.useHTML ? 'highcharts-tracker' : '') // #3398
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { attr.text = str;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { dataLabel.attr(attr);
20034  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Styles must be applied before add in order to read text bounding box
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { dataLabel.css(style).shadow(options.shadow);
20037  
20038  
20039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (!dataLabel.added) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { dataLabel.add(dataLabelsGroup);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Now the data label is created and placed at 0,0, so we need to align it
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { series.alignDataLabel(point, dataLabel, options, null, isNew);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
20045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { };
20048  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { * Align each individual data label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { Series.prototype.alignDataLabel = function(point, dataLabel, options, alignTo, isNew) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { var chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { inverted = chart.inverted,
20055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { plotX = pick(point.plotX, -9999),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { plotY = pick(point.plotY, -9999),
20057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { bBox = dataLabel.getBBox(),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { fontSize,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { baseline,
20060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { rotation = options.rotation,
20061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { normRotation,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { negRotation,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { align = options.align,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { rotCorr, // rotation correction
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Math.round for rounding errors (#2683), alignTo to allow column labels (#2700)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { visible =
20067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { this.visible &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { point.series.forceDL ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { chart.isInsidePlot(plotX, Math.round(plotY), inverted) ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { alignTo && chart.isInsidePlot(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { plotX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { inverted ? alignTo.x + 1 : alignTo.y + alignTo.height - 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { inverted
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { ),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { alignAttr, // the final position;
20080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { justify = pick(options.overflow, 'justify') === 'justify';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (visible) {
20083  
20084  
20085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { fontSize = options.style.fontSize;
20086  
20087  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { baseline = chart.renderer.fontMetrics(fontSize, dataLabel).b;
20089  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // The alignment box is a singular point
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { alignTo = extend({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { x: inverted ? chart.plotWidth - plotY : plotX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { y: Math.round(inverted ? chart.plotHeight - plotX : plotY),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { width: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { height: 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }, alignTo);
20097  
20098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Add the text size for alignment calculation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { extend(options, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { width: bBox.width,
20101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { height: bBox.height
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { });
20103  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Allow a hook for changing alignment in the last moment, then do the alignment
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { if (rotation) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { justify = false; // Not supported for rotated text
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { rotCorr = chart.renderer.rotCorr(baseline, rotation); // #3723
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { alignAttr = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { x: alignTo.x + options.x + alignTo.width / 2 + rotCorr.x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { y: alignTo.y + options.y + {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { top: 0,
20112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { middle: 0.5,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { bottom: 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { }[options.verticalAlign] * alignTo.height
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { };
20116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { dataLabel[isNew ? 'attr' : 'animate'](alignAttr)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { .attr({ // #3003
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { align: align
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { });
20120  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { // Compensate for the rotated label sticking out on the sides
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { normRotation = (rotation + 720) % 360;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) { negRotation = normRotation > 180 && normRotation < 360;
20124  
20125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (align === 'left') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignAttr.y -= negRotation ? bBox.height : 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else if (align === 'center') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignAttr.x -= bBox.width / 2;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignAttr.y -= bBox.height / 2;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else if (align === 'right') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignAttr.x -= bBox.width;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignAttr.y -= negRotation ? 0 : bBox.height;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20134  
20135  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel.align(options, null, alignTo);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignAttr = dataLabel.alignAttr;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20140  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Handle justify or crop
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (justify) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point.isLabelJustified = this.justifyDataLabel(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignAttr,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; bBox,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignTo,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; isNew
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; );
20151  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Now check that the data label is within the plot area
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else if (pick(options.crop, true)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; visible = chart.isInsidePlot(alignAttr.x, alignAttr.y) && chart.isInsidePlot(alignAttr.x + bBox.width, alignAttr.y + bBox.height);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20156  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // When we're using a shape, make it possible with a connector or an arrow pointing to thie point
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (options.shape && !rotation) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; anchorX: point.plotX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; anchorY: point.plotY
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20165  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Show or hide based on the final aligned position
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (!visible) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; y: -9999
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel.placed = false; // don't animate back in
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
20175  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
20177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * If data labels fall partly outside the plot area, align them back in, in a way that
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * doesn't hide the point.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; Series.prototype.justifyDataLabel = function(dataLabel, options, alignAttr, bBox, alignTo, isNew) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var chart = this.chart,
20182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; align = options.align,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; verticalAlign = options.verticalAlign,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; off,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; justified,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; padding = dataLabel.box ? 0 : (dataLabel.padding || 0);
20187  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Off left
20189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; off = alignAttr.x + padding;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (off < 0) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (align === 'right') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; options.align = 'left';
20193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; options.x = -off;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; justified = 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20198  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Off right
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; off = alignAttr.x + bBox.width - padding;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (off > chart.plotWidth) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (align === 'left') {
20203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; options.align = 'right';
20204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; options.x = chart.plotWidth - off;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; justified = true;
20208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20209  
20210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Off top
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; off = alignAttr.y + padding;
20212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (off < 0) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (verticalAlign === 'bottom') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; options.verticalAlign = 'top';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else {
20216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; options.y = -off;
20217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; justified = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20220  
20221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Off bottom
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; off = alignAttr.y + bBox.height - padding;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (off > chart.plotHeight) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (verticalAlign === 'top') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; options.verticalAlign = 'bottom';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; options.y = chart.plotHeight - off;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; justified = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20231  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (justified) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel.placed = !isNew;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel.align(options, null, alignTo);
20235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20236  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; return justified;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
20239  
20240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Override the base drawDataLabels method by pie specific functionality
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (seriesTypes.pie) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; seriesTypes.pie.prototype.drawDataLabels = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; data = series.data,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point,
20248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; chart = series.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; options = series.options.dataLabels,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; connectorPadding = pick(options.connectorPadding, 10),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; connectorWidth = pick(options.connectorWidth, 1),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; plotWidth = chart.plotWidth,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; plotHeight = chart.plotHeight,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; connector,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; distanceOption = options.distance,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; seriesCenter = series.center,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; radius = seriesCenter[2] / 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; centerY = seriesCenter[1],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; outside = distanceOption > 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabelWidth,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; labelPos,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; labelHeight,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; halves = [ // divide the points into right and left halves for anti collision
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; [], // right
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; [] // left
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; ],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; visibility,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; j,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; overflow = [0, 0, 0, 0]; // top, right, bottom, left
20273  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // get out if not enabled
20275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (!series.visible || (!options.enabled && !series._hasPointLabels)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; return;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20278  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Reset all labels that have been shortened
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each(data, function(point) {
20281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (point.dataLabel && point.visible && point.dataLabel.shortened) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point.dataLabel
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; width: 'auto'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }).css({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; width: 'auto',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; textOverflow: 'clip'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
20289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point.dataLabel.shortened = false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
20292  
20293  
20294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // run parent method
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; Series.prototype.drawDataLabels.apply(series);
20296  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each(data, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (point.dataLabel && point.visible) { // #407, #2510
20299  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Arrange points for detection collision
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; halves[point.half].push(point);
20302  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Reset positions (#4905)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point.dataLabel._pos = null;
20305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
20307  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /* Loop over the points in each half, starting from the top and bottom
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * of the pie to detect overlapping labels.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each(halves, function(points, i) {
20312  
20313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var top,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; bottom,
20315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; length = points.length,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; positions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; naturalY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; sideOverflow,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; size;
20320  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (!length) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; return;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20324  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Sort by angle
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; series.sortByAngle(points, i - 0.5);
20327  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Only do anti-collision when we are outside the pie and have connectors (#856)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (distanceOption > 0) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; top = Math.max(0, centerY - radius - distanceOption);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; bottom = Math.min(centerY + radius + distanceOption, chart.plotHeight);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; positions = map(points, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (point.dataLabel) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; size = point.dataLabel.getBBox().height || 21;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; return {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; target: point.labelPos[1] - top + size / 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; size: size,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; rank: point.y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; H.distribute(positions, bottom + size - top);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20344  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // now the used slots are sorted, fill them up sequentially
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; for (j = 0; j < length; j++) {
20347  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point = points[j];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; labelPos = point.labelPos;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel = point.dataLabel;
20351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; visibility = point.visible === false ? 'hidden' : 'inherit';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; naturalY = labelPos[1];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (positions) {
20355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (positions[j].pos === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; visibility = 'hidden';
20357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; labelHeight = positions[j].size;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; y = top + positions[j].pos;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20361  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; y = naturalY;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20365  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // get the x - use the natural x position for labels near the top and bottom, to prevent the top
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // and botton slice connectors from touching each other on either side
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (options.justify) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; x = seriesCenter[0] + (i ? -1 : 1) * (radius + distanceOption);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; x = series.getX(y < top + 2 || y > bottom - 2 ? naturalY : y, i);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20373  
20374  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Record the placement and visibility
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel._attr = {
20377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; visibility: visibility,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; align: labelPos[6]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel._pos = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; x: x + options.x +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; ({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; left: connectorPadding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; right: -connectorPadding
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }[labelPos[6]] || 0),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; y: y + options.y - 10 // 10 is for the baseline (label vs text)
20387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; labelPos.x = x;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; labelPos.y = y;
20390  
20391  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Detect overflowing data labels
20393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (series.options.size === null) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabelWidth = dataLabel.getBBox().width;
20395  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; sideOverflow = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Overflow left
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (x - dataLabelWidth < connectorPadding) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; sideOverflow = Math.round(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabelWidth - x + connectorPadding
20401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; overflow[3] = Math.max(sideOverflow, overflow[3]);
20403  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Overflow right
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else if (x + dataLabelWidth > plotWidth - connectorPadding) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; sideOverflow = Math.round(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; x + dataLabelWidth - plotWidth + connectorPadding
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; overflow[1] = Math.max(sideOverflow, overflow[1]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Overflow top
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (y - labelHeight / 2 < 0) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; overflow[0] = Math.max(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; Math.round(-y + labelHeight / 2),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; overflow[0]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; );
20418  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Overflow left
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else if (y + labelHeight / 2 > plotHeight) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; overflow[2] = Math.max(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; Math.round(y + labelHeight / 2 - plotHeight),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; overflow[2]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel.sideOverflow = sideOverflow;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } // for each point
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }); // for each half
20430  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Do not apply the final placement and draw the connectors until we have verified
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // that labels are not spilling over.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (arrayMax(overflow) === 0 || this.verifyDataLabelOverflow(overflow)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Place the labels in the final position
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; this.placeDataLabels();
20437  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Draw the connectors
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (outside && connectorWidth) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each(this.points, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var isNew;
20442  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; connector = point.connector;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel = point.dataLabel;
20445  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (dataLabel && dataLabel._pos && point.visible) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; visibility = dataLabel._attr.visibility;
20448  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; isNew = !connector;
20450  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (isNew) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point.connector = connector = chart.renderer.path()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .addClass('highcharts-data-label-connector highcharts-color-' + point.colorIndex)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .add(series.dataLabelsGroup);
20455  
20456  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; connector.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; 'stroke-width': connectorWidth,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; 'stroke': options.connectorColor || point.color || '#666666'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
20461  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; connector[isNew ? 'attr' : 'animate']({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; d: series.connectorPath(point.labelPos)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; connector.attr('visibility', visibility);
20467  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else if (connector) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point.connector = connector.destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
20475  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Extendable method for getting the path of the connector between the data label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * and the pie slice.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; seriesTypes.pie.prototype.connectorPath = function(labelPos) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var x = labelPos.x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; y = labelPos.y;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; return pick(this.options.dataLabels.softConnector, true) ? [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; 'M',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; x + (labelPos[6] === 'left' ? 5 : -5), y, // end of the string at the label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; 'C',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; x, y, // first break, next to the label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; 2 * labelPos[2] - labelPos[4], 2 * labelPos[3] - labelPos[5],
20489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; labelPos[2], labelPos[3], // second break
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; 'L',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; labelPos[4], labelPos[5] // base
20492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; ] : [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; 'M',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; x + (labelPos[6] === 'left' ? 5 : -5), y, // end of the string at the label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; 'L',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; labelPos[2], labelPos[3], // second break
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; 'L',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; labelPos[4], labelPos[5] // base
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; ];
20500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
20501  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Perform the final placement of the data labels after we have verified that they
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * fall within the plot area.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; seriesTypes.pie.prototype.placeDataLabels = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each(this.points, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var dataLabel = point.dataLabel,
20509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; _pos;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (dataLabel && point.visible) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; _pos = dataLabel._pos;
20512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (_pos) {
20513  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Shorten data labels with ellipsis if they still overflow
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // after the pie has reached minSize (#223).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (dataLabel.sideOverflow) {
20517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel._attr.width =
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel.getBBox().width - dataLabel.sideOverflow;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel.css({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; width: dataLabel._attr.width + 'px',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; textOverflow: 'ellipsis'
20522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel.shortened = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20525  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel.attr(dataLabel._attr);
20527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel[dataLabel.moved ? 'animate' : 'attr'](_pos);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel.moved = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else if (dataLabel) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dataLabel.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; y: -9999
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }, this);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
20537  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; seriesTypes.pie.prototype.alignDataLabel = noop;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Verify whether the data labels are allowed to draw, or we should run more translation and data
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * label positioning to keep them inside the plot area. Returns true when data labels are ready
20543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * to draw.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; seriesTypes.pie.prototype.verifyDataLabelOverflow = function(overflow) {
20546  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var center = this.center,
20548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; options = this.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; centerOption = options.center,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; minSize = options.minSize || 80,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; newSize = minSize,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; ret;
20553  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Handle horizontal size and center
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (centerOption[0] !== null) { // Fixed center
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; newSize = Math.max(center[2] - Math.max(overflow[1], overflow[3]), minSize);
20557  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else { // Auto center
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; newSize = Math.max(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; center[2] - overflow[1] - overflow[3], // horizontal overflow
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; minSize
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; center[0] += (overflow[3] - overflow[1]) / 2; // horizontal center
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20565  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Handle vertical size and center
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (centerOption[1] !== null) { // Fixed center
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; newSize = Math.max(Math.min(newSize, center[2] - Math.max(overflow[0], overflow[2])), minSize);
20569  
20570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else { // Auto center
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; newSize = Math.max(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; Math.min(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; newSize,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; center[2] - overflow[0] - overflow[2] // vertical overflow
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; ),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; minSize
20577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; center[1] += (overflow[0] - overflow[2]) / 2; // vertical center
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20580  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // If the size must be decreased, we need to run translate and drawDataLabels again
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (newSize < center[2]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; center[2] = newSize;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; center[3] = Math.min(relativeLength(options.innerSize || 0, newSize), newSize); // #3632
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; this.translate(center);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (this.drawDataLabels) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; this.drawDataLabels();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Else, return true to indicate that the pie and its labels is within the plot area
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; ret = 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; return ret;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20597  
20598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (seriesTypes.column) {
20599  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
20601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Override the basic data label alignment by adjusting for the position of the column
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; seriesTypes.column.prototype.alignDataLabel = function(point, dataLabel, options, alignTo, isNew) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var inverted = this.chart.inverted,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; series = point.series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; dlBox = point.dlBox || point.shapeArgs, // data label box for alignment
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; below = pick(point.below, point.plotY > pick(this.translatedThreshold, series.yAxis.len)), // point.below is used in range series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; inside = pick(options.inside, !!this.options.stacking), // draw it inside the box?
20609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; overshoot;
20610  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Align to the column itself, or the top of it
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (dlBox) { // Area range uses this method but not alignTo
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignTo = merge(dlBox);
20614  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (alignTo.y < 0) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignTo.height += alignTo.y;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignTo.y = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; overshoot = alignTo.y + alignTo.height - series.yAxis.len;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (overshoot > 0) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignTo.height -= overshoot;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20623  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (inverted) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignTo = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; x: series.yAxis.len - alignTo.y - alignTo.height,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; y: series.xAxis.len - alignTo.x - alignTo.width,
20628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; width: alignTo.height,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; height: alignTo.width
20630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20632  
20633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Compute the alignment box
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (!inside) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (inverted) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignTo.x += below ? 0 : alignTo.width;
20637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignTo.width = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignTo.y += below ? alignTo.height : 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignTo.height = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20644  
20645  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // When alignment is undefined (typically columns and bars), display the individual
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // point below or above the point depending on the threshold
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; options.align = pick(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; options.align, !inverted || inside ? 'center' : below ? 'right' : 'left'
20650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; options.verticalAlign = pick(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; options.verticalAlign,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; inverted || inside ? 'middle' : below ? 'top' : 'bottom'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; );
20655  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Call the parent method
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; Series.prototype.alignDataLabel.call(this, point, dataLabel, options, alignTo, isNew);
20658  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // If label was justified and we have contrast, set it:
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (point.isLabelJustified && point.contrastColor) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point.dataLabel.css({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; color: point.contrastColor
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20667  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * (c) 2009-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Highcharts module to hide overlapping data labels. This module is included in
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Highcharts.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var Chart = H.Chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pick = H.pick,
20682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; addEvent = H.addEvent;
20683  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Collect potensial overlapping data labels. Stack labels probably don't need
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // to be considered because they are usually accompanied by data labels that lie
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // inside the columns.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; Chart.prototype.callbacks.push(function(chart) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; function collectAndHide() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var labels = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each(chart.series || [], function(series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var dlOptions = series.options.dataLabels,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Range series have two collections
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; collections = series.dataLabelCollections || ['dataLabel'];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; (dlOptions.enabled || series._hasPointLabels) &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; !dlOptions.allowOverlap &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; series.visible
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; ) { // #3866
20701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each(collections, function(coll) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each(series.points, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (point[coll]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point[coll].labelrank = pick(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point.labelrank,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point.shapeArgs && point.shapeArgs.height
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; ); // #4118
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; labels.push(point[coll]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; chart.hideOverlappingLabels(labels);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20716  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Do it now ...
20718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; collectAndHide();
20719  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // ... and after each chart redraw
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; addEvent(chart, 'redraw', collectAndHide);
20722  
20723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
20724  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Hide overlapping labels. Labels are moved and faded in and out on zoom to
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * provide a smooth visual imression.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; Chart.prototype.hideOverlappingLabels = function(labels) {
20730  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var len = labels.length,
20732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; i,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; j,
20735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; isIntersecting,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pos1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pos2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; parent1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; parent2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; padding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; intersectRect = function(x1, y1, w1, h1, x2, y2, w2, h2) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; return !(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; x2 > x1 + w1 ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; x2 + w2 < x1 ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; y2 > y1 + h1 ||
20748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; y2 + h2 < y1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Mark with initial opacity
20753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; for (i = 0; i < len; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label = labels[i];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (label) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label.oldOpacity = label.opacity;
20757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label.newOpacity = 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20760  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Prevent a situation in a gradually rising slope, that each label will
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // hide the previous one because the previous one always has lower rank.
20763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; labels.sort(function(a, b) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; return (b.labelrank || 0) - (a.labelrank || 0);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
20766  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Detect overlapping labels
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; for (i = 0; i < len; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label1 = labels[i];
20770  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; for (j = i + 1; j < len; ++j) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label2 = labels[j];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label1 && label2 &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label1 !== label2 && // #6465, polar chart with connectEnds
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label1.placed && label2.placed &&
20777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label1.newOpacity !== 0 && label2.newOpacity !== 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; ) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pos1 = label1.alignAttr;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pos2 = label2.alignAttr;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Different panes have different positions
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; parent1 = label1.parentGroup;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; parent2 = label2.parentGroup;
20784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Substract the padding if no background or border (#4333)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; padding = 2 * (label1.box ? 0 : label1.padding);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; isIntersecting = intersectRect(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pos1.x + parent1.translateX,
20788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pos1.y + parent1.translateY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label1.width - padding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label1.height - padding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pos2.x + parent2.translateX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pos2.y + parent2.translateY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label2.width - padding,
20794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label2.height - padding
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; );
20796  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (isIntersecting) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; (label1.labelrank < label2.labelrank ? label1 : label2)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .newOpacity = 0;
20800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20804  
20805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Hide or show
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each(labels, function(label) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var complete,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; newOpacity;
20809  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (label) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; newOpacity = label.newOpacity;
20812  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (label.oldOpacity !== newOpacity && label.placed) {
20814  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Make sure the label is completely hidden to avoid catching
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // clicks (#4362)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (newOpacity) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label.show(true);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else {
20820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; complete = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label.hide();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20824  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Animate or set the opacity
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label.alignAttr.opacity = newOpacity;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label[label.isOld ? 'animate' : 'attr'](
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label.alignAttr,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; complete
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; );
20832  
20833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; label.isOld = true;
20835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
20838  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var addEvent = H.addEvent,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; Chart = H.Chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; createElement = H.createElement,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; css = H.css,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; defaultOptions = H.defaultOptions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; defaultPlotOptions = H.defaultPlotOptions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; extend = H.extend,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; fireEvent = H.fireEvent,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; hasTouch = H.hasTouch,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; inArray = H.inArray,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; isObject = H.isObject,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; Legend = H.Legend,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; merge = H.merge,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pick = H.pick,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; Point = H.Point,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; Series = H.Series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; seriesTypes = H.seriesTypes,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; svg = H.svg,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; TrackerMixin;
20866  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * TrackerMixin for points and graphs.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * @mixin
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; TrackerMixin = H.TrackerMixin = {
20873  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Draw the tracker for a point.
20876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; drawTrackerPoint: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var series = this,
20879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; chart = series.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pointer = chart.pointer,
20881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; onMouseOver = function(e) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var point = pointer.getPointFromEvent(e);
20883  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // undefined on graph in scatterchart
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (point !== undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point.onMouseOver(e);
20887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
20889  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Add reference to the point
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each(series.points, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (point.graphic) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point.graphic.element.point = point;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (point.dataLabel) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (point.dataLabel.div) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point.dataLabel.div.point = point;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point.dataLabel.element.point = point;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
20903  
20904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Add the event listeners, we need to do this only once
20905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (!series._hasTracking) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each(series.trackerGroups, function(key) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (series[key]) { // we don't always have dataLabelsGroup
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; series[key]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .addClass('highcharts-tracker')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .on('mouseover', onMouseOver)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .on('mouseout', function(e) {
20912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pointer.onTrackerMouseOut(e);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (hasTouch) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; series[key].on('touchstart', onMouseOver);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20917  
20918  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (series.options.cursor) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; series[key]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .css(css)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .css({
20923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; cursor: series.options.cursor
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; series._hasTracking = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; },
20932  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Draw the tracker object that sits above all data labels and markers to
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * track mouse events on the graph or points. For the line type charts
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * the tracker uses the same graphPath, but with a greater stroke width
20937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * for better control.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; drawTrackerGraph: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; options = series.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; trackByArea = options.trackByArea,
20943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; trackerPath = [].concat(trackByArea ? series.areaPath : series.graphPath),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; trackerPathLength = trackerPath.length,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; chart = series.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pointer = chart.pointer,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; renderer = chart.renderer,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; snap = chart.options.tooltip.snap,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; tracker = series.tracker,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; i,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; onMouseOver = function() {
20952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (chart.hoverSeries !== series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; series.onMouseOver();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /*
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Empirical lowest possible opacities for TRACKER_FILL for an element to stay invisible but clickable
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * IE6: 0.002
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * IE7: 0.002
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * IE8: 0.002
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * IE9: 0.00000000001 (unlimited)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * IE10: 0.0001 (exporting only)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * FF: 0.00000000001 (unlimited)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Chrome: 0.000001
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Safari: 0.000001
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Opera: 0.00000000001 (unlimited)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; TRACKER_FILL = 'rgba(192,192,192,' + (svg ? 0.0001 : 0.002) + ')';
20969  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Extend end points. A better way would be to use round linecaps,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // but those are not clickable in VML.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (trackerPathLength && !trackByArea) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; i = trackerPathLength + 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; while (i--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (trackerPath[i] === 'M') { // extend left side
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; trackerPath.splice(i + 1, 0, trackerPath[i + 1] - snap, trackerPath[i + 2], 'L');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if ((i && trackerPath[i] === 'M') || i === trackerPathLength) { // extend right side
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; trackerPath.splice(i, 0, 'L', trackerPath[i - 2] + snap, trackerPath[i - 1]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
20983  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // handle single points
20985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /*for (i = 0; i < singlePoints.length; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; singlePoint = singlePoints[i];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; trackerPath.push(M, singlePoint.plotX - snap, singlePoint.plotY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; L, singlePoint.plotX + snap, singlePoint.plotY);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }*/
20990  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // draw the tracker
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (tracker) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; tracker.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; d: trackerPath
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else if (series.graph) { // create
20997  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; series.tracker = renderer.path(trackerPath)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; 'stroke-linejoin': 'round', // #1225
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; visibility: series.visible ? 'visible' : 'hidden',
21002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; stroke: TRACKER_FILL,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; fill: trackByArea ? TRACKER_FILL : 'none',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; 'stroke-width': series.graph.strokeWidth() + (trackByArea ? 0 : 2 * snap),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; zIndex: 2
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .add(series.group);
21008  
21009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // The tracker is added to the series group, which is clipped, but is covered
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // by the marker group. So the marker group also needs to capture events.
21011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each([series.tracker, series.markerGroup], function(tracker) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; tracker.addClass('highcharts-tracker')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .on('mouseover', onMouseOver)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .on('mouseout', function(e) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pointer.onTrackerMouseOut(e);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
21017  
21018  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (options.cursor) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; tracker.css({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; cursor: options.cursor
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
21023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
21024  
21025  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (hasTouch) {
21027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; tracker.on('touchstart', onMouseOver);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /* End TrackerMixin */
21034  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Add tracking event listener to the series group, so the point graphics
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * themselves act as trackers
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
21040  
21041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (seriesTypes.column) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; seriesTypes.column.prototype.drawTracker = TrackerMixin.drawTrackerPoint;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
21044  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (seriesTypes.pie) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; seriesTypes.pie.prototype.drawTracker = TrackerMixin.drawTrackerPoint;
21047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
21048  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (seriesTypes.scatter) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; seriesTypes.scatter.prototype.drawTracker = TrackerMixin.drawTrackerPoint;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
21052  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /*
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Extend Legend for item events
21055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; extend(Legend.prototype, {
21057  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; setItemEvents: function(item, legendItem, useHTML) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var legend = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; boxWrapper = legend.chart.renderer.boxWrapper,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; activeClass = 'highcharts-legend-' + (item.series ? 'point' : 'series') + '-active';
21062  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Set the events on the item group, or in case of useHTML, the item itself (#1249)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; (useHTML ? legendItem : item.legendGroup).on('mouseover', function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; item.setState('hover');
21066  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // A CSS class to dim or hide other than the hovered series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; boxWrapper.addClass(activeClass);
21069  
21070  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; legendItem.css(legend.options.itemHoverStyle);
21072  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .on('mouseout', function() {
21075  
21076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; legendItem.css(item.visible ? legend.itemStyle : legend.itemHiddenStyle);
21077  
21078  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // A CSS class to dim or hide other than the hovered series
21080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; boxWrapper.removeClass(activeClass);
21081  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; item.setState();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .on('click', function(event) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var strLegendItemClick = 'legendItemClick',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; fnLegendItemClick = function() {
21087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (item.setVisible) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; item.setVisible();
21089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
21091  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Pass over the click/touch event. #4.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; event = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; browserEvent: event
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; };
21096  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // click the name or symbol
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (item.firePointEvent) { // point
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; item.firePointEvent(strLegendItemClick, event, fnLegendItemClick);
21100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; fireEvent(item, strLegendItemClick, event, fnLegendItemClick);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; },
21105  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; createCheckboxForItem: function(item) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var legend = this;
21108  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; item.checkbox = createElement('input', {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; type: 'checkbox',
21111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; checked: item.selected,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; defaultChecked: item.selected // required by IE7
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }, legend.options.itemCheckboxStyle, legend.chart.container);
21114  
21115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; addEvent(item.checkbox, 'click', function(event) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var target = event.target;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; fireEvent(
21118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; item.series || item,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; 'checkboxClick', { // #3712
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; checked: target.checked,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; item: item
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; item.select();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
21129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
21130  
21131  
21132  
21133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Add pointer cursor to legend itemstyle in defaultOptions
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; defaultOptions.legend.itemStyle.cursor = 'pointer';
21135  
21136  
21137  
21138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /*
21139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Extend the Chart object with interaction
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
21141  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; extend(Chart.prototype, /** @lends Chart.prototype */ {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Display the zoom button
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
21146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; showResetZoom: function() {
21147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var chart = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; lang = defaultOptions.lang,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; btnOptions = chart.options.chart.resetZoomButton,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; theme = btnOptions.theme,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; states = theme.states,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; alignTo = btnOptions.relativeTo === 'chart' ? null : 'plotBox';
21153  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; function zoomOut() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; chart.zoomOut();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
21157  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; this.resetZoomButton = chart.renderer.button(lang.resetZoom, null, null, zoomOut, theme, states && states.hover)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; align: btnOptions.position.align,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; title: lang.resetZoomTitle
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .addClass('highcharts-reset-zoom')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .add()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; .align(btnOptions.position, false, alignTo);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; },
21168  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Zoom out to 1:1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
21172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; zoomOut: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var chart = this;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; fireEvent(chart, 'selection', {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; resetSelection: true
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }, function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; chart.zoom();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; },
21180  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Zoom into a given portion of the chart given by axis coordinates
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * @param {Object} event
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; zoom: function(event) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var chart = this,
21187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; hasZoomed,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pointer = chart.pointer,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; displayButton = false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; resetZoomButton;
21191  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // If zoom is called with no arguments, reset the axes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (!event || event.resetSelection) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each(chart.axes, function(axis) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; hasZoomed = axis.zoom();
21196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else { // else, zoom in on all axes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each(event.xAxis.concat(event.yAxis), function(axisData) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var axis = axisData.axis,
21200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; isXAxis = axis.isXAxis;
21201  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // don't zoom more than minRange
21203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (pointer[isXAxis ? 'zoomX' : 'zoomY']) {
21204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; hasZoomed = axis.zoom(axisData.min, axisData.max);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (axis.displayBtn) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; displayButton = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
21211  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Show or hide the Reset zoom button
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; resetZoomButton = chart.resetZoomButton;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (displayButton && !resetZoomButton) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; chart.showResetZoom();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; } else if (!displayButton && isObject(resetZoomButton)) {
21217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; chart.resetZoomButton = resetZoomButton.destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
21219  
21220  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // Redraw
21222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (hasZoomed) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; chart.redraw(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pick(chart.options.chart.animation, event && event.animation, chart.pointCount < 100) // animation
21225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; },
21228  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; /**
21230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * Pan the chart by dragging the mouse across the pane. This function is called
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * on mouse move, and the distance to pan is computed from chartX compared to
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; * the first chartX position in the dragging operation.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; pan: function(e, panning) {
21235  
21236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var chart = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; hoverPoints = chart.hoverPoints,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; doRedraw;
21239  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; // remove active points for shared tooltip
21241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; if (hoverPoints) {
21242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each(hoverPoints, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; point.setState();
21244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; });
21245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; }
21246  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; each(panning === 'xy' ? [1, 0] : [1], function(isX) { // xy is used in maps
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; var axis = chart[isX ? 'xAxis' : 'yAxis'][0],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; horiz = axis.horiz,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; mousePos = e[horiz ? 'chartX' : 'chartY'],
21251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; mouseDown = horiz ? 'mouseDownX' : 'mouseDownY',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; startPos = chart[mouseDown],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; halfPointRange = (axis.pointRange || 0) / 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; extremes = axis.getExtremes(),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; panMin = axis.toValue(startPos - mousePos, true) +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; halfPointRange,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; panMax = axis.toValue(startPos + axis.len - mousePos, true) -
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; halfPointRange,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360; flipped = panMax < panMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin, newMin = flipped ? panMax : panMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin, newMax = flipped ? panMin : panMax,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin, paddedMin = axis.toValue(
21263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin, axis.toPixels(extremes.min) - axis.minPixelPadding
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin, ),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin, paddedMax = axis.toValue(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin, axis.toPixels(extremes.max) + axis.minPixelPadding
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin, ),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin, distMin = Math.min(extremes.dataMin, paddedMin) - newMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin, distMax = newMax - Math.max(extremes.dataMax, paddedMax);
21270  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin, // Negative distMin and distMax means that we're still inside the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin, // data range.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin, if (axis.series.length && distMin < 0 && distMax < 0) {
21274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { axis.setExtremes(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { newMin,
21276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { newMax,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { false, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { trigger: 'pan'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { doRedraw = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21284  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart[mouseDown] = mousePos; // set new reference for next run
21286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
21287  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (doRedraw) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart.redraw(false);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { css(chart.container, {
21292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { cursor: 'move'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
21296  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /*
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Extend the Point object with interaction
21299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { extend(Point.prototype, /** @lends Point.prototype */ {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Toggle the selection status of a point
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * @param {Boolean} selected Whether to select or unselect the point.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * @param {Boolean} accumulate Whether to add to the previous selection. By default,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * this happens if the control key (Cmd on Mac) was pressed during clicking.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { select: function(selected, accumulate) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var point = this,
21309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series = point.series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart = series.chart;
21311  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { selected = pick(selected, !point.selected);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // fire the event with the default handler
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { point.firePointEvent(selected ? 'select' : 'unselect', {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { accumulate: accumulate
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }, function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { point.selected = point.options.selected = selected;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.options.data[inArray(point, series.data)] = point.options;
21320  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { point.setState(selected && 'select');
21322  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // unselect all other points unless Ctrl or Cmd + click
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (!accumulate) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { each(chart.getSelectedPoints(), function(loopPoint) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (loopPoint.selected && loopPoint !== point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { loopPoint.selected = loopPoint.options.selected = false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.options.data[inArray(loopPoint, series.data)] = loopPoint.options;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { loopPoint.setState('');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { loopPoint.firePointEvent('unselect');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
21333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Runs on mouse over the point
21339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * @param {Object} e The event arguments
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { onMouseOver: function(e) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var point = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series = point.series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart = series.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { pointer = chart.pointer;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { point.firePointEvent('mouseOver');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { pointer.runPointActions(e, point);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { },
21350  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Runs on mouse out from the point
21353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { onMouseOut: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var point = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart = point.series.chart;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { point.firePointEvent('mouseOut');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { each(chart.hoverPoints || [], function(p) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { p.setState();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart.hoverPoints = chart.hoverPoint = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { },
21363  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Import events from the series' and point's options. Only do it on
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * demand, to save processing time on hovering.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { importEvents: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (!this.hasImportedEvents) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var point = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { options = merge(point.series.options.point, point.options),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { events = options.events,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { eventType;
21374  
21375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { point.events = events;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { for (eventType in events) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { addEvent(point, eventType, events[eventType]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { this.hasImportedEvents = true;
21381  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Set the point's state
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * @param {String} state
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { setState: function(state, move) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var point = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { plotX = Math.floor(point.plotX), // #4586
21392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { plotY = point.plotY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series = point.series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { stateOptions = series.options.states[state] || {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { markerOptions = defaultPlotOptions[series.type].marker &&
21396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.options.marker,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { normalDisabled = markerOptions && markerOptions.enabled === false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { markerStateOptions = (markerOptions && markerOptions.states &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { markerOptions.states[state]) || {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { stateDisabled = markerStateOptions.enabled === false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { stateMarkerGraphic = series.stateMarkerGraphic,
21402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { pointMarker = point.marker || {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart = series.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { halo = series.halo,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { haloOptions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { markerAttribs,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { hasMarkers = markerOptions && series.markerAttribs,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { newSymbol;
21409  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { state = state || ''; // empty string
21411  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // already has this state
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { (state === point.state && !move) ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // selected points don't respond to hover
21416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { (point.selected && state !== 'select') ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // series' state options is disabled
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { (stateOptions.enabled === false) ||
21419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // general point marker's state options is disabled
21420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { (state && (stateDisabled || (normalDisabled && markerStateOptions.enabled === false))) ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // individual point marker's state options is disabled
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { (state && pointMarker.states && pointMarker.states[state] && pointMarker.states[state].enabled === false) // #1610
21423  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { ) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { return;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21427  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (hasMarkers) {
21429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { markerAttribs = series.markerAttribs(point, state);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21431  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Apply hover styles to the existing point
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (point.graphic) {
21434  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (point.state) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { point.graphic.removeClass('highcharts-point-' + point.state);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (state) {
21439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { point.graphic.addClass('highcharts-point-' + state);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21441  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /*attribs = radius ? { // new symbol attributes (#507, #612)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { x: plotX - radius,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { y: plotY - radius,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { width: 2 * radius,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { height: 2 * radius
21447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { } : {};*/
21448  
21449  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { //attribs = merge(series.pointAttribs(point, state), attribs);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { point.graphic.attr(series.pointAttribs(point, state));
21452  
21453  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (markerAttribs) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { point.graphic.animate(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { markerAttribs,
21457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { pick(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart.options.chart.animation, // Turn off globally
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { markerStateOptions.animation,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { markerOptions.animation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21464  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Zooming in from a range with no markers to a range with markers
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (stateMarkerGraphic) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { stateMarkerGraphic.hide();
21468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // if a graphic is not applied to each point in the normal state, create a shared
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // graphic for the hover state
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (state && markerStateOptions) {
21473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { newSymbol = pointMarker.symbol || series.symbol;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // If the point has another symbol than the previous one, throw away the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // state marker graphic and force a new one (#1459)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (stateMarkerGraphic && stateMarkerGraphic.currentSymbol !== newSymbol) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { stateMarkerGraphic = stateMarkerGraphic.destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21480  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Add a new state marker graphic
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (!stateMarkerGraphic) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (newSymbol) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.stateMarkerGraphic = stateMarkerGraphic = chart.renderer.symbol(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { newSymbol,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { markerAttribs.x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { markerAttribs.y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { markerAttribs.width,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { markerAttribs.height
21490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { .add(series.markerGroup);
21492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { stateMarkerGraphic.currentSymbol = newSymbol;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21494  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Move the existing graphic
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { } else {
21497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { stateMarkerGraphic[move ? 'animate' : 'attr']({ // #1054
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { x: markerAttribs.x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { y: markerAttribs.y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21502  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (stateMarkerGraphic) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { stateMarkerGraphic.attr(series.pointAttribs(point, state));
21505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21506  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21508  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (stateMarkerGraphic) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { stateMarkerGraphic[state && chart.isInsidePlot(plotX, plotY, chart.inverted) ? 'show' : 'hide'](); // #2450
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { stateMarkerGraphic.element.point = point; // #4310
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21514  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Show me your halo
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { haloOptions = stateOptions.halo;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (haloOptions && haloOptions.size) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (!halo) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.halo = halo = chart.renderer.path()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // #5818, #5903
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { .add(hasMarkers ? series.markerGroup : series.group);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { halo[move ? 'animate' : 'attr']({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { d: point.haloPath(haloOptions.size)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { halo.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { 'class': 'highcharts-halo highcharts-color-' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { pick(point.colorIndex, series.colorIndex)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { halo.point = point; // #6055
21531  
21532  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { halo.attr(extend({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { 'fill': point.color || series.color,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { 'fill-opacity': haloOptions.opacity,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { 'zIndex': -1 // #4929, IE8 added halo above everything
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }, haloOptions.attributes));
21538  
21539  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { } else if (halo && halo.point && halo.point.haloPath) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Animate back to 0 on the current halo point (#6055)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { halo.animate({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { d: halo.point.haloPath(0)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21546  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { point.state = state;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { },
21549  
21550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Get the circular path definition for the halo
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * @param {Number} size The radius of the circular halo.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * @returns {Array} The path definition
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { haloPath: function(size) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var series = this.series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart = series.chart;
21558  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { return chart.renderer.symbols.circle(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { Math.floor(this.plotX) - size,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { this.plotY - size,
21562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { size * 2,
21563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { size * 2
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
21567  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /*
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Extend the Series object with interaction
21570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
21571  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { extend(Series.prototype, /** @lends Series.prototype */ {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Series mouse over handler
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
21576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { onMouseOver: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart = series.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { hoverSeries = chart.hoverSeries;
21580  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // set normal state to previous series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (hoverSeries && hoverSeries !== series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { hoverSeries.onMouseOut();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21585  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // trigger the event, but to save processing time,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // only if defined
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (series.options.events.mouseOver) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { fireEvent(series, 'mouseOver');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21591  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // hover this
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.setState('hover');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart.hoverSeries = series;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { },
21596  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Series mouse out handler
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { onMouseOut: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // trigger the event only if listeners exist
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { options = series.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart = series.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { tooltip = chart.tooltip,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { hoverPoint = chart.hoverPoint;
21607  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart.hoverSeries = null; // #182, set to null before the mouseOut event fires
21609  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // trigger mouse out on the point, which must be in this series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (hoverPoint) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { hoverPoint.onMouseOut();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // fire the mouse out event
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (series && options.events.mouseOut) {
21617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { fireEvent(series, 'mouseOut');
21618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21619  
21620  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // hide the tooltip
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (tooltip && !series.stickyTracking && (!tooltip.shared || series.noSharedTooltip)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { tooltip.hide();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21625  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // set normal state
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.setState();
21628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { },
21629  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Set the state of the graph
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { setState: function(state) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { options = series.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { graph = series.graph,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { stateOptions = options.states,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { lineWidth = options.lineWidth,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { attribs,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { i = 0;
21641  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { state = state || '';
21643  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (series.state !== state) {
21645  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Toggle class names
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { each([
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.group,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.markerGroup,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.dataLabelsGroup
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { ], function(group) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (group) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Old state
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (series.state) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { group.removeClass('highcharts-series-' + series.state);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // New state
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (state) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { group.addClass('highcharts-series-' + state);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
21663  
21664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.state = state;
21665  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (stateOptions[state] && stateOptions[state].enabled === false) {
21669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { return;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21671  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (state) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { lineWidth = stateOptions[state].lineWidth || lineWidth + (stateOptions[state].lineWidthPlus || 0); // #4035
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21675  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (graph && !graph.dashstyle) { // hover is turned off for dashed lines in VML
21677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { attribs = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { 'stroke-width': lineWidth
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { };
21680  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Animate the graph stroke-width. By default a quick animation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // to hover, slower to un-hover.
21683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { graph.animate(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { attribs,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { pick(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.chart.options.chart.animation,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { stateOptions[state] && stateOptions[state].animation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { while (series['zone-graph-' + i]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series['zone-graph-' + i].attr(attribs);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { i = i + 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21695  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { },
21698  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
21700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Set the visibility of the graph
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * @param vis {Boolean} True to show the series, false to hide. If undefined,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * the visibility is toggled.
21704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { setVisible: function(vis, redraw) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart = series.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { legendItem = series.legendItem,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { showOrHide,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { ignoreHiddenSeries = chart.options.chart.ignoreHiddenSeries,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { oldVisibility = series.visible;
21712  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // if called without an argument, toggle visibility
21714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.visible = vis = series.options.visible = series.userOptions.visible = vis === undefined ? !oldVisibility : vis; // #5618
21715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { showOrHide = vis ? 'show' : 'hide';
21716  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // show or hide elements
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { each(['group', 'dataLabelsGroup', 'markerGroup', 'tracker', 'tt'], function(key) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (series[key]) {
21720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series[key][showOrHide]();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
21723  
21724  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // hide tooltip (#1361)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (chart.hoverSeries === series || (chart.hoverPoint && chart.hoverPoint.series) === series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.onMouseOut();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21729  
21730  
21731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (legendItem) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart.legend.colorizeItem(series, vis);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21734  
21735  
21736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // rescale or adapt to resized chart
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.isDirty = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // in a stack, all other series are affected
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (series.options.stacking) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { each(chart.series, function(otherSeries) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (otherSeries.options.stacking && otherSeries.visible) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { otherSeries.isDirty = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
21745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21746  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // show or hide linked series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { each(series.linkedSeries, function(otherSeries) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { otherSeries.setVisible(vis, false);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
21751  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (ignoreHiddenSeries) {
21753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart.isDirtyBox = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (redraw !== false) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { chart.redraw();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21758  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { fireEvent(series, showOrHide);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { },
21761  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Show the graph
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { show: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { this.setVisible(true);
21767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { },
21768  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Hide the graph
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { hide: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { this.setVisible(false);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { },
21775  
21776  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
21778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Set the selected state of the graph
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * @param selected {Boolean} True to select the series, false to unselect. If
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * undefined, the selection state is toggled.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { select: function(selected) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var series = this;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // if called without an argument, toggle
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.selected = selected = (selected === undefined) ? !series.selected : selected;
21787  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (series.checkbox) {
21789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.checkbox.checked = selected;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21791  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { fireEvent(series, selected ? 'select' : 'unselect');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { },
21794  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { drawTracker: TrackerMixin.drawTrackerGraph
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
21797  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { (function(H) {
21800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var Chart = H.Chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { inArray = H.inArray,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { isArray = H.isArray,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { isObject = H.isObject,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { pick = H.pick,
21811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { splat = H.splat;
21812  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Update the chart based on the current chart/document size and options for
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * responsiveness.
21816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { Chart.prototype.setResponsive = function(redraw) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var options = this.options.responsive,
21819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { ruleIds = [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { currentResponsive = this.currentResponsive,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { currentRuleIds;
21822  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (options && options.rules) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { each(options.rules, function(rule) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (rule._id === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { rule._id = H.uniqueKey();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21828  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { this.matchResponsiveRule(rule, ruleIds, redraw);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }, this);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21832  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Merge matching rules
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var mergedOptions = H.merge.apply(0, H.map(ruleIds, function(ruleId) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { return H.find(options.rules, function(rule) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { return rule._id === ruleId;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }).chartOptions;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }));
21839  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Stringified key for the rules that currently apply.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { ruleIds = ruleIds.toString() || undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { currentRuleIds = currentResponsive && currentResponsive.ruleIds;
21843  
21844  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Changes in what rules apply
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (ruleIds !== currentRuleIds) {
21847  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Undo previous rules. Before we apply a new set of rules, we need to
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // roll back completely to base options (#6291).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (currentResponsive) {
21851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { this.update(currentResponsive.undoOptions, redraw);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21853  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (ruleIds) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Get undo-options for matching rules
21856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { this.currentResponsive = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { ruleIds: ruleIds,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { mergedOptions: mergedOptions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { undoOptions: this.currentOptions(mergedOptions)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { };
21861  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { this.update(mergedOptions, redraw);
21863  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { this.currentResponsive = undefined;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { };
21869  
21870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
21871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Handle a single responsiveness rule
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { Chart.prototype.matchResponsiveRule = function(rule, matches) {
21874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var condition = rule.condition,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { fn = condition.callback || function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { return this.chartWidth <= pick(condition.maxWidth, Number.MAX_VALUE) &&
21877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { this.chartHeight <= pick(condition.maxHeight, Number.MAX_VALUE) &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { this.chartWidth >= pick(condition.minWidth, 0) &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { this.chartHeight >= pick(condition.minHeight, 0);
21880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { };
21881  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (fn.call(this)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { matches.push(rule._id);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { };
21887  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Get the current values for a given set of options. Used before we update
21890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * the chart with a new responsiveness rule.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * TODO: Restore axis options (by id?)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { Chart.prototype.currentOptions = function(options) {
21894  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var ret = {};
21896  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Recurse over a set of options and its current values,
21899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * and store the current values in the ret object.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { function getCurrent(options, curr, ret, depth) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var key, i;
21903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { for (key in options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (!depth && inArray(key, ['series', 'xAxis', 'yAxis']) > -1) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { options[key] = splat(options[key]);
21906  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { ret[key] = [];
21908  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Iterate over collections like series, xAxis or yAxis and map
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // the items by index.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { for (i = 0; i < options[key].length; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (curr[key][i]) { // Item exists in current data (#6347)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { ret[key][i] = {};
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { getCurrent(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { options[key][i],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { curr[key][i],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { ret[key][i],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { depth + 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { } else if (isObject(options[key])) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { ret[key] = isArray(options[key]) ? [] : {};
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { getCurrent(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { options[key],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { curr[key] || {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { ret[key],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { depth + 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { } else {
21931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { ret[key] = curr[key] || null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21935  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { getCurrent(options, this.options, ret, 0);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { return ret;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { };
21939  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * (c) 2010-2017 Torstein Honsi
21944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
21947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var Axis = H.Axis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { pick = H.pick,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { wrap = H.wrap;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Override to use the extreme coordinates from the SVG shape, not the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * data values
21954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { wrap(Axis.prototype, 'getSeriesExtremes', function(proceed) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var isXAxis = this.isXAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { dataMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { dataMax,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { xData = [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { useMapGeometry;
21961  
21962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Remove the xData array and cache it locally so that the proceed method doesn't use it
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (isXAxis) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { each(this.series, function(series, i) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (series.useMapGeometry) {
21966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { xData[i] = series.xData;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.xData = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
21969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Call base to reach normal cartesian series (like mappoint)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { proceed.call(this);
21974  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Run extremes logic for map and mapline
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (isXAxis) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { dataMin = pick(this.dataMin, Number.MAX_VALUE);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { dataMax = pick(this.dataMax, -Number.MAX_VALUE);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { each(this.series, function(series, i) {
21980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (series.useMapGeometry) {
21981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { dataMin = Math.min(dataMin, pick(series.minX, dataMin));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { dataMax = Math.max(dataMax, pick(series.maxX, dataMin));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { series.xData = xData[i]; // Reset xData array
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { useMapGeometry = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (useMapGeometry) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { this.dataMin = dataMin;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { this.dataMax = dataMax;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
21993  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { * Override axis translation to make sure the aspect ratio is always kept
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { */
21997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { wrap(Axis.prototype, 'setAxisTranslation', function(proceed) {
21998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { var chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { mapRatio,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { plotRatio = chart.plotWidth / chart.plotHeight,
22001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { adjustedAxisLength,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { xAxis = chart.xAxis[0],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { padAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { fixTo,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { fixDiff,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { preserveAspectRatio;
22007  
22008  
22009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Run the parent method
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { proceed.call(this);
22011  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Check for map-like series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (this.coll === 'yAxis' && xAxis.transA !== undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { each(this.series, function(series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (series.preserveAspectRatio) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { preserveAspectRatio = true;
22017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { }
22020  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // On Y axis, handle both
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { if (preserveAspectRatio) {
22023  
22024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // Use the same translation for both axes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { this.transA = xAxis.transA = Math.min(this.transA, xAxis.transA);
22026  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { mapRatio = plotRatio / ((xAxis.max - xAxis.min) / (this.max - this.min));
22028  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { // What axis to pad to put the map in the middle
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) { padAxis = mapRatio < 1 ? this : xAxis;
22031  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; // Pad it
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; adjustedAxisLength = (padAxis.max - padAxis.min) * padAxis.transA;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; padAxis.pixelPadding = padAxis.len - adjustedAxisLength;
22035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; padAxis.minPixelPadding = padAxis.pixelPadding / 2;
22036  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; fixTo = padAxis.fixTo;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; if (fixTo) {
22039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; fixDiff = fixTo[1] - padAxis.toValue(fixTo[0], true);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; fixDiff *= padAxis.transA;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; if (Math.abs(fixDiff) > padAxis.minPixelPadding || (padAxis.min === padAxis.dataMin && padAxis.max === padAxis.dataMax)) { // zooming out again, keep within restricted area
22042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; fixDiff = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; padAxis.minPixelPadding -= fixDiff;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; }
22047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; });
22048  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; /**
22050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; * Override Axis.render in order to delete the fixTo prop
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; wrap(Axis.prototype, 'render', function(proceed) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; proceed.call(this);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.fixTo = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; });
22056  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; }(Highcharts));
22058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; /**
22060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; var Axis = H.Axis,
22065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; Chart = H.Chart,
22066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; color = H.color,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; ColorAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; extend = H.extend,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; isNumber = H.isNumber,
22071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; Legend = H.Legend,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; LegendSymbolMixin = H.LegendSymbolMixin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; noop = H.noop,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; merge = H.merge,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; pick = H.pick,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; wrap = H.wrap;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; * The ColorAxis object for inclusion in gradient legends
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; ColorAxis = H.ColorAxis = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.init.apply(this, arguments);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; extend(ColorAxis.prototype, Axis.prototype);
22085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; extend(ColorAxis.prototype, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; defaultColorAxisOptions: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; lineWidth: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; minPadding: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; maxPadding: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; gridLineWidth: 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; tickPixelInterval: 72,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; startOnTick: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; endOnTick: 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; offset: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; marker: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; animation: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; duration: 50
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; width: 0.01,
22100  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; color: '#999999'
22102  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; labels: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; overflow: 'justify',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; rotation: 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; minColor: '#e6ebf5',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; maxColor: '#003399',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; tickLength: 5,
22111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; showInLegend: true
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; },
22113  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; // Properties to preserve after destroy, for Axis.update (#5881, #6025)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; keepProps: [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; 'legendGroup',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; 'legendItemHeight',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; 'legendItemWidth',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; 'legendItem',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; 'legendSymbol'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; ].concat(Axis.prototype.keepProps),
22122  
22123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; * Initialize the color axis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; init: function(chart, userOptions) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; var horiz = chart.options.legend.layout !== 'vertical',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; options;
22129  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.coll = 'colorAxis';
22131  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; // Build the options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; options = merge(this.defaultColorAxisOptions, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; side: horiz ? 2 : 1,
22135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; reversed: !horiz
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; }, userOptions, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; opposite: !horiz,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; showEmpty: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; title: null
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; });
22141  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; Axis.prototype.init.call(this, chart, options);
22143  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; // Base init() pushes it to the xAxis array, now pop it again
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; //chart[this.isXAxis ? 'xAxis' : 'yAxis'].pop();
22146  
22147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; // Prepare data classes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; if (userOptions.dataClasses) {
22149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.initDataClasses(userOptions);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.initStops(userOptions);
22152  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; // Override original axis properties
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.horiz = horiz;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.zoomEnabled = false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; // Add default values
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.defaultLegendLength = 200;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; },
22160  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; /*
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; * Return an intermediate color between two colors, according to pos where 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; * is the from color and 1 is the to color.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; * NOTE: Changes here should be copied
22165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; * to the same function in drilldown.src.js and solid-gauge-src.js.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; tweenColors: function(from, to, pos) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; // Check for has alpha, because rgba colors perform worse due to lack of
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; // support in WebKit.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; var hasAlpha,
22171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; ret;
22172  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; // Unsupported color, return to-color (#3920)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; if (!to.rgba.length || !from.rgba.length) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; ret = to.input || 'none';
22176  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; // Interpolate
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; from = from.rgba;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; to = to.rgba;
22181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; hasAlpha = (to[3] !== 1 || from[3] !== 1);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; ret = (hasAlpha ? 'rgba(' : 'rgb(') +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; Math.round(to[0] + (from[0] - to[0]) * (1 - pos)) + ',' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; Math.round(to[1] + (from[1] - to[1]) * (1 - pos)) + ',' +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; Math.round(to[2] + (from[2] - to[2]) * (1 - pos)) +
22186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; (hasAlpha ? (',' + (to[3] + (from[3] - to[3]) * (1 - pos))) : '') + ')';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; return ret;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; },
22190  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; initDataClasses: function(userOptions) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; dataClasses,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; colorCounter = 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; colorCount = chart.options.chart.colorCount,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; options = this.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; len = userOptions.dataClasses.length;
22199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.dataClasses = dataClasses = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.legendItems = [];
22201  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; each(userOptions.dataClasses, function(dataClass, i) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; var colors;
22204  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; dataClass = merge(dataClass);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; dataClasses.push(dataClass);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; if (!dataClass.color) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; if (options.dataClassColor === 'category') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; colors = chart.options.colors;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; colorCount = colors.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; dataClass.color = colors[colorCounter];
22213  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; dataClass.colorIndex = colorCounter;
22215  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; // increase and loop back to zero
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; colorCounter++;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; if (colorCounter === colorCount) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; colorCounter = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; } else {
22222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; dataClass.color = axis.tweenColors(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; color(options.minColor),
22224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; color(options.maxColor),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; len < 2 ? 0.5 : i / (len - 1) // #3219
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; },
22231  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; initStops: function(userOptions) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.stops = userOptions.stops || [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; [0, this.options.minColor],
22235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; [1, this.options.maxColor]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; ];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; each(this.stops, function(stop) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; stop.color = color(stop[1]);
22239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; },
22241  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; * Extend the setOptions method to process extreme colors and color
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; * stops.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; setOptions: function(userOptions) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; Axis.prototype.setOptions.call(this, userOptions);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.options.crosshair = this.options.marker;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; },
22251  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; setAxisSize: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; var symbol = this.legendSymbol,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; legendOptions = chart.options.legend || {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; x,
22257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; width,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; height;
22260  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; if (symbol) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.left = x = symbol.attr('x');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.top = y = symbol.attr('y');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.width = width = symbol.attr('width');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.height = height = symbol.attr('height');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.right = chart.chartWidth - x - width;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.bottom = chart.chartHeight - y - height;
22268  
22269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.len = this.horiz ? width : height;
22270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.pos = this.horiz ? x : y;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; // Fake length for disabled legend to avoid tick issues and such (#5205)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; this.len = (this.horiz ? legendOptions.symbolWidth : legendOptions.symbolHeight) || this.defaultLegendLength;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; },
22276  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; * Translate from a value to a color
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; */
22280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; toColor: function(value, point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; var pos,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; stops = this.stops,
22283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; from,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; to,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; color,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; dataClasses = this.dataClasses,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; dataClass,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; i;
22289  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; if (dataClasses) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; i = dataClasses.length;
22292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; while (i--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; dataClass = dataClasses[i];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; from = dataClass.from;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; to = dataClass.to;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis; if ((from === undefined || value >= from) && (to === undefined || value <= to)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { color = dataClass.color;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { if (point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { point.dataClass = i;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { point.colorIndex = dataClass.colorIndex;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { break;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { }
22305  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { } else {
22307  
22308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { if (this.isLog) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { value = this.val2lin(value);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { pos = 1 - ((this.max - value) / ((this.max - this.min) || 1));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { i = stops.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { while (i--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { if (pos > stops[i][0]) {
22315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { break;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { from = stops[i] || stops[i + 1];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { to = stops[i + 1] || from;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { // The position within the gradient
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { pos = 1 - (to[0] - pos) / ((to[0] - from[0]) || 1);
22323  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { color = this.tweenColors(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { from.color,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { to.color,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { pos
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { return color;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { },
22332  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { * Override the getOffset method to add the whole axis groups inside the legend.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { getOffset: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { var group = this.legendGroup,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { sideOffset = this.chart.axisOffset[this.side];
22339  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { if (group) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { // Hook for the getOffset method to add groups to this parent group
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { this.axisParent = group;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { // Call the base
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { Axis.prototype.getOffset.call(this);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { // First time only
22349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { if (!this.added) {
22350  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { this.added = true;
22352  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { this.labelLeft = 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { this.labelRight = this.width;
22355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { // Reset it to avoid color axis reserving space
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { this.chart.axisOffset[this.side] = sideOffset;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { },
22360  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { * Create the color gradient
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { setLegendColor: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { var grad,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { horiz = this.horiz,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { options = this.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { reversed = this.reversed,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { one = reversed ? 1 : 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { zero = reversed ? 0 : 1;
22371  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { grad = horiz ? [one, 0, zero, 0] : [0, zero, 0, one]; // #3190
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { this.legendColor = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { linearGradient: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { x1: grad[0],
22376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { y1: grad[1],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { x2: grad[2],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { y2: grad[3]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { stops: options.stops || [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { [0, options.minColor],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { [1, options.maxColor]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { ]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { };
22385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { },
22386  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { * The color axis appears inside the legend and has its own legend symbol
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { drawLegendSymbol: function(legend, item) {
22391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { var padding = legend.padding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { legendOptions = legend.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { horiz = this.horiz,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { width = pick(legendOptions.symbolWidth, horiz ? this.defaultLegendLength : 12),
22395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { height = pick(legendOptions.symbolHeight, horiz ? 12 : this.defaultLegendLength),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { labelPadding = pick(legendOptions.labelPadding, horiz ? 16 : 30),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { itemDistance = pick(legendOptions.itemDistance, 10);
22398  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { this.setLegendColor();
22400  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { // Create the gradient
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { item.legendSymbol = this.chart.renderer.rect(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { legend.baseline - 11,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { width,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { height
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { ).attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { zIndex: 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { }).add(item.legendGroup);
22410  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { // Set how much space this legend item takes up
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { this.legendItemWidth = width + padding + (horiz ? itemDistance : labelPadding);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { this.legendItemHeight = height + padding + (horiz ? labelPadding : 0);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { * Fool the legend
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { setState: noop,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { visible: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { setVisible: noop,
22421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { getSeriesExtremes: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { var series = this.series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { i = series.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { this.dataMin = Infinity;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { this.dataMax = -Infinity;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { while (i--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { if (series[i].valueMin !== undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { this.dataMin = Math.min(this.dataMin, series[i].valueMin);
22429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { this.dataMax = Math.max(this.dataMax, series[i].valueMax);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { drawCrosshair: function(e, point) {
22434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { var plotX = point && point.plotX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { plotY = point && point.plotY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { crossPos,
22437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { axisPos = this.pos,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { axisLen = this.len;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { if (point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { crossPos = this.toPixels(point[point.series.colorKey]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) { if (crossPos < axisPos) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { crossPos = axisPos - 2;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { } else if (crossPos > axisPos + axisLen) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { crossPos = axisPos + axisLen + 2;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { }
22447  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { point.plotX = crossPos;
22449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { point.plotY = this.len - crossPos;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { Axis.prototype.drawCrosshair.call(this, e, point);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { point.plotX = plotX;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { point.plotY = plotY;
22453  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { if (this.cross) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { this.cross
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { .addClass('highcharts-coloraxis-marker')
22457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { .add(this.legendGroup);
22458  
22459  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { this.cross.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { fill: this.crosshair.color
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { });
22463  
22464  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { getPlotLinePath: function(a, b, c, d, pos) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { return isNumber(pos) ? // crosshairs only // #3969 pos can be 0 !!
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< 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']) :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { Axis.prototype.getPlotLinePath.call(this, a, b, c, d);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { },
22473  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { update: function(newOptions, redraw) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { var chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { legend = chart.legend;
22477  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { each(this.series, function(series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { series.isDirtyData = true; // Needed for Axis.update when choropleth colors change
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { });
22481  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { // When updating data classes, destroy old items and make sure new ones are created (#3207)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { if (newOptions.dataClasses && legend.allItems) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { each(legend.allItems, function(item) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { if (item.isDataClass) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { item.legendGroup.destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { chart.isDirtyLegend = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { // Keep the options structure updated for export. Unlike xAxis and yAxis, the colorAxis is
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { // not an array. (#3207)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { chart.options[this.coll] = merge(this.userOptions, newOptions);
22495  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { Axis.prototype.update.call(this, newOptions, redraw);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { if (this.legendItem) {
22498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { this.setLegendColor();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { legend.colorizeItem(this, true);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { },
22502  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { * Get the legend item symbols for data classes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { getDataClassLegendSymbols: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { legendItems = this.legendItems,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { legendOptions = chart.options.legend,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { valueDecimals = legendOptions.valueDecimals,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { valueSuffix = legendOptions.valueSuffix || '',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { name;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { if (!legendItems.length) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { each(this.dataClasses, function(dataClass, i) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { var vis = true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { from = dataClass.from,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { to = dataClass.to;
22520  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { // Assemble the default name. This can be overridden by legend.options.labelFormatter
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { name = '';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { if (from === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) { name = '< ';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; } else if (to === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; name = '> ';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
22528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (from !== undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; name += H.numberFormat(from, valueDecimals) + valueSuffix;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (from !== undefined && to !== undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; name += ' - ';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (to !== undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; name += H.numberFormat(to, valueDecimals) + valueSuffix;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Add a mock object to the legend items
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; legendItems.push(extend({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart: chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; name: name,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; options: {},
22542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; drawLegendSymbol: LegendSymbolMixin.drawRectangle,
22543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; visible: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; setState: noop,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; isDataClass: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; setVisible: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; vis = this.visible = !vis;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each(axis.series, function(series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each(series.points, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (point.dataClass === i) {
22551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point.setVisible(vis);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
22555  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.legend.colorizeItem(this, vis);
22557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }, dataClass));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; return legendItems;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; name: '' // Prevents 'undefined' in legend in IE8
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
22565  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Handle animation of the color attributes directly
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each(['fill', 'stroke'], function(prop) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; H.Fx.prototype[prop + 'Setter'] = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.elem.attr(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; prop,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; ColorAxis.prototype.tweenColors(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; color(this.start),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; color(this.end),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.pos
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; ),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; true
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
22583  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Extend the chart getAxes method to also get the color axis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; wrap(Chart.prototype, 'getAxes', function(proceed) {
22588  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var options = this.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; colorAxisOptions = options.colorAxis;
22591  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; proceed.call(this);
22593  
22594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.colorAxis = [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (colorAxisOptions) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; new ColorAxis(this, colorAxisOptions); // eslint-disable-line no-new
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
22599  
22600  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Wrap the legend getAllItems method to add the color axis. This also removes the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * axis' own series to prevent them from showing up individually.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; wrap(Legend.prototype, 'getAllItems', function(proceed) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var allItems = [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; colorAxis = this.chart.colorAxis[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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (colorAxis && colorAxis.options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (colorAxis.options.showInLegend) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Data classes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (colorAxis.options.dataClasses) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; allItems = allItems.concat(colorAxis.getDataClassLegendSymbols());
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Gradient legend
22615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Add this axis on top
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; allItems.push(colorAxis);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
22620  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Don't add the color axis' series
22622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each(colorAxis.series, function(series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; series.options.showInLegend = false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
22626  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; return allItems.concat(proceed.call(this));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
22629  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; wrap(Legend.prototype, 'colorizeItem', function(proceed, item, visible) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; proceed.call(this, item, visible);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (visible && item.legendColor) {
22633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; item.legendSymbol.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; fill: item.legendColor
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
22638  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
22642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * (c) 2010-2017 Torstein Honsi
22643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var defined = H.defined,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; noop = H.noop,
22649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; seriesTypes = H.seriesTypes;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Mixin for maps and heatmaps
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; H.colorPointMixin = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Color points have a value option that determines whether or not it is a null point
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; isValid: function() {
22659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; return this.value !== null;
22660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
22661  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Set the visibility of a single point
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
22665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; setVisible: function(vis) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var point = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; method = vis ? 'show' : 'hide';
22668  
22669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Show and hide associated elements
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each(['graphic', 'dataLabel'], function(key) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (point[key]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point[key][method]();
22673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; setState: function(state) {
22677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; H.Point.prototype.setState.call(this, state);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (this.graphic) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.graphic.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; zIndex: state === 'hover' ? 1 : 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
22682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; };
22685  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; H.colorSeriesMixin = {
22687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pointArrayMap: ['value'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; axisTypes: ['xAxis', 'yAxis', 'colorAxis'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; optionalAxis: 'colorAxis',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; trackerGroups: ['group', 'markerGroup', 'dataLabelsGroup'],
22691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; getSymbol: noop,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; parallelArrays: ['x', 'y', 'value'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; colorKey: 'value',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pointAttribs: seriesTypes.column.prototype.pointAttribs,
22697  
22698  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
22700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * In choropleth maps, the color is a result of the value, so this needs translation too
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
22702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; translateColors: function() {
22703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; nullColor = this.options.nullColor,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; colorAxis = this.colorAxis,
22706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; colorKey = this.colorKey;
22707  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each(this.data, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var value = point[colorKey],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; color;
22711  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; color = point.options.color ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; (point.isNull ? nullColor : (colorAxis && value !== undefined) ? colorAxis.toColor(value, point) : point.color || series.color);
22714  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (color) {
22716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point.color = color;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
22720  
22721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Get the color attibutes to apply on the graphic
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; colorAttribs: function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var ret = {};
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (defined(point.color)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; ret[this.colorProp || 'fill'] = point.color;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; return ret;
22730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; };
22732  
22733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * License: www.highcharts.com/license
22739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var addEvent = H.addEvent,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; Chart = H.Chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; doc = H.doc,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; extend = H.extend,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; merge = H.merge,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pick = H.pick,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; wrap = H.wrap;
22748  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; function stopEvent(e) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (e) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (e.preventDefault) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; e.preventDefault();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (e.stopPropagation) {
22755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; e.stopPropagation();
22756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
22757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; e.cancelBubble = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
22760  
22761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
22762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * The MapNavigation handles buttons for navigation in addition to mousewheel
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * and doubleclick handlers for chart zooming.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * @param {Chart} chart The Chart instance.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * @class
22766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; function MapNavigation(chart) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.init(chart);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
22770  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Initiator function.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * @param {Chart} chart The Chart instance.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; MapNavigation.prototype.init = function(chart) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.chart = chart;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.mapNavButtons = [];
22778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; };
22779  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Update the map navigation with new options. Calling this is the same as
22782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * calling `chart.update({ mapNavigation: {} })`.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * @param {Object} options New options for the map navigation.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; MapNavigation.prototype.update = function(options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; o = chart.options.mapNavigation,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; buttons,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; n,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; button,
22791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; buttonOptions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; attr,
22793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; states,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; hoverStates,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; selectStates,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; outerHandler = function(e) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.handler.call(chart, e);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; stopEvent(e); // Stop default click event (#4444)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; mapNavButtons = chart.mapNavButtons;
22801  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Merge in new options in case of update, and register back to chart
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // options.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (options) {
22805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; o = chart.options.mapNavigation =
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; merge(chart.options.mapNavigation, options);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
22808  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Destroy buttons in case of dynamic update
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; while (mapNavButtons.length) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; mapNavButtons.pop().destroy();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
22813  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (pick(o.enableButtons, o.enabled) && !chart.renderer.forExport) {
22815  
22816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; buttons = o.buttons;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; for (n in buttons) {
22818  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (buttons.hasOwnProperty(n)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; buttonOptions = merge(o.buttonOptions, buttons[n]);
22821  
22822  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Presentational
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; attr = buttonOptions.theme;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; attr.style = merge(
22826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; buttonOptions.theme.style,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; buttonOptions.style // #3203
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; states = attr.states;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; hoverStates = states && states.hover;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; selectStates = states && states.select;
22832  
22833  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; button = chart.renderer.button(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; buttonOptions.text,
22836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; outerHandler,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; attr,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; hoverStates,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; selectStates,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; n === 'zoomIn' ? 'topbutton' : 'bottombutton'
22844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; )
22845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; .addClass('highcharts-map-navigation')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; .attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; width: buttonOptions.width,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; height: buttonOptions.height,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; title: chart.options.lang[n],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; padding: buttonOptions.padding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; zIndex: 5
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; })
22853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; .add();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; button.handler = buttonOptions.onclick;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; button.align(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; extend(buttonOptions, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; width: button.width,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; height: 2 * button.height
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }),
22860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; buttonOptions.alignTo
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Stop double click event (#4444)
22864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; addEvent(button.element, 'dblclick', stopEvent);
22865  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; mapNavButtons.push(button);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
22870  
22871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.updateEvents(o);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; };
22873  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Update events, called internally from the update function. Add new event
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * handlers, or unbinds events if disabled.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * @param {Object} options Options for map navigation.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; MapNavigation.prototype.updateEvents = function(options) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var chart = this.chart;
22881  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Add the double click event
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pick(options.enableDoubleClickZoom, options.enabled) ||
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; options.enableDoubleClickZoomTo
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; ) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.unbindDblClick = this.unbindDblClick || addEvent(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.container,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; 'dblclick',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; function(e) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.pointer.onContainerDblClick(e);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; } else if (this.unbindDblClick) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Unbind and set unbinder to undefined
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.unbindDblClick = this.unbindDblClick();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
22898  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Add the mousewheel event
22900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (pick(options.enableMouseWheelZoom, options.enabled)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.unbindMouseWheel = this.unbindMouseWheel || addEvent(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.container,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; doc.onmousewheel === undefined ? 'DOMMouseScroll' : 'mousewheel',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; function(e) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.pointer.onContainerMouseWheel(e);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Issue #5011, returning false from non-jQuery event does
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // not prevent default
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; stopEvent(e);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; return false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; } else if (this.unbindMouseWheel) {
22913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Unbind and set unbinder to undefined
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.unbindMouseWheel = this.unbindMouseWheel();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
22916  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; };
22918  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Add events to the Chart object itself
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; extend(Chart.prototype, {
22921  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Fit an inner box to an outer. If the inner box overflows left or right, align it to the sides of the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * outer. If it overflows both sides, fit it within the outer. This is a pattern that occurs more places
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * in Highcharts, perhaps it should be elevated to a common utility function.
22926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; fitToBox: function(inner, outer) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each([
22929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; ['x', 'width'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; ['y', 'height']
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; ], function(dim) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var pos = dim[0],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; size = dim[1];
22934  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (inner[pos] + inner[size] > outer[pos] + outer[size]) { // right overflow
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (inner[size] > outer[size]) { // the general size is greater, fit fully to outer
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; inner[size] = outer[size];
22938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; inner[pos] = outer[pos];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; } else { // align right
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; inner[pos] = outer[pos] + outer[size] - inner[size];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (inner[size] > outer[size]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; inner[size] = outer[size];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (inner[pos] < outer[pos]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; inner[pos] = outer[pos];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
22950  
22951  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; return inner;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
22954  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Zoom the map in or out by a certain amount. Less than 1 zooms in, greater than 1 zooms out.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; mapZoom: function(howMuch, centerXArg, centerYArg, mouseX, mouseY) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /*if (this.isMapZooming) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.mapZoomQueue = arguments;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; return;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }*/
22963  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var chart = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; xAxis = chart.xAxis[0],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; xRange = xAxis.max - xAxis.min,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; centerX = pick(centerXArg, xAxis.min + xRange / 2),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; newXRange = xRange * howMuch,
22969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; yAxis = chart.yAxis[0],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; yRange = yAxis.max - yAxis.min,
22971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; centerY = pick(centerYArg, yAxis.min + yRange / 2),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; newYRange = yRange * howMuch,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; fixToX = mouseX ? ((mouseX - xAxis.pos) / xAxis.len) : 0.5,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; fixToY = mouseY ? ((mouseY - yAxis.pos) / yAxis.len) : 0.5,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; newXMin = centerX - newXRange * fixToX,
22976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; newYMin = centerY - newYRange * fixToY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; newExt = chart.fitToBox({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; x: newXMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; y: newYMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; width: newXRange,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; height: newYRange
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; x: xAxis.dataMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; y: yAxis.dataMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; width: xAxis.dataMax - xAxis.dataMin,
22986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; height: yAxis.dataMax - yAxis.dataMin
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }),
22988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; zoomOut = newExt.x <= xAxis.dataMin &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; newExt.width >= xAxis.dataMax - xAxis.dataMin &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; newExt.y <= yAxis.dataMin &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; newExt.height >= yAxis.dataMax - yAxis.dataMin;
22992  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // When mousewheel zooming, fix the point under the mouse
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (mouseX) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; xAxis.fixTo = [mouseX - xAxis.pos, centerXArg];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (mouseY) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; yAxis.fixTo = [mouseY - yAxis.pos, centerYArg];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23000  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Zoom
23002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (howMuch !== undefined && !zoomOut) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; xAxis.setExtremes(newExt.x, newExt.x + newExt.width, false);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; yAxis.setExtremes(newExt.y, newExt.y + newExt.height, false);
23005  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Reset zoom
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; xAxis.setExtremes(undefined, undefined, false);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; yAxis.setExtremes(undefined, undefined, false);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23011  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Prevent zooming until this one is finished animating
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /*chart.holdMapZoom = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; setTimeout(function () {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.holdMapZoom = false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }, 200);*/
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /*delay = animation ? animation.duration || 500 : 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (delay) {
23019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.isMapZooming = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; setTimeout(function () {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.isMapZooming = false;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (chart.mapZoomQueue) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.mapZoom.apply(chart, chart.mapZoomQueue);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.mapZoomQueue = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }, delay);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }*/
23028  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.redraw();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Extend the Chart.render method to add zooming and panning
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; wrap(Chart.prototype, 'render', function(proceed) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Render the plus and minus buttons. Doing this before the shapes makes getBBox much quicker, at least in Chrome.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.mapNavigation = new MapNavigation(this);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.mapNavigation.update();
23040  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; proceed.call(this);
23042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
23043  
23044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; *
23049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var extend = H.extend,
23052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pick = H.pick,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; Pointer = H.Pointer,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; wrap = H.wrap;
23055  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Extend the Pointer
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; extend(Pointer.prototype, {
23058  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * The event handler for the doubleclick event
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; onContainerDblClick: function(e) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var chart = this.chart;
23064  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; e = this.normalize(e);
23066  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (chart.options.mapNavigation.enableDoubleClickZoomTo) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (chart.pointer.inClass(e.target, 'highcharts-tracker') && chart.hoverPoint) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.hoverPoint.zoomTo();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; } else if (chart.isInsidePlot(e.chartX - chart.plotLeft, e.chartY - chart.plotTop)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.mapZoom(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; 0.5,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.xAxis[0].toValue(e.chartX),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.yAxis[0].toValue(e.chartY),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; e.chartX,
23077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; e.chartY
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; );
23079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
23081  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * The event handler for the mouse scroll event
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; onContainerMouseWheel: function(e) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; delta;
23088  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; e = this.normalize(e);
23090  
23091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Firefox uses e.detail, WebKit and IE uses wheelDelta
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; delta = e.detail || -(e.wheelDelta / 120);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (chart.isInsidePlot(e.chartX - chart.plotLeft, e.chartY - chart.plotTop)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.mapZoom(
23095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; Math.pow(chart.options.mapNavigation.mouseWheelSensitivity, delta),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.xAxis[0].toValue(e.chartX),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart.yAxis[0].toValue(e.chartY),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; e.chartX,
23099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; e.chartY
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
23104  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // The pinchType is inferred from mapNavigation options.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; wrap(Pointer.prototype, 'zoomOption', function(proceed) {
23107  
23108  
23109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var mapNavigation = this.chart.options.mapNavigation;
23110  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Pinch status
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (pick(mapNavigation.enableTouchZoom, mapNavigation.enabled)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.chart.options.chart.pinchType = 'xy';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23115  
23116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; proceed.apply(this, [].slice.call(arguments, 1));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
23119  
23120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Extend the pinchTranslate method to preserve fixed ratio when zooming
23121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; wrap(Pointer.prototype, 'pinchTranslate', function(proceed, pinchDown, touches, transform, selectionMarker, clip, lastValidTouch) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var xBigger;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; proceed.call(this, pinchDown, touches, transform, selectionMarker, clip, lastValidTouch);
23124  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Keep ratio
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (this.chart.options.chart.type === 'map' && this.hasZoom) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; xBigger = transform.scaleX > transform.scaleY;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.pinchTranslateDirection(!xBigger,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pinchDown,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; touches,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; transform,
23132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; selectionMarker,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; clip,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; lastValidTouch,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; xBigger ? transform.scaleX : transform.scaleY
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
23139  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; (function(H) {
23142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var color = H.color,
23148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; ColorAxis = H.ColorAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; colorPointMixin = H.colorPointMixin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; colorSeriesMixin = H.colorSeriesMixin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; doc = H.doc,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; extend = H.extend,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; isNumber = H.isNumber,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; LegendSymbolMixin = H.LegendSymbolMixin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; map = H.map,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; merge = H.merge,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; noop = H.noop,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pick = H.pick,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; isArray = H.isArray,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; Point = H.Point,
23162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; Series = H.Series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; seriesType = H.seriesType,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; seriesTypes = H.seriesTypes,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; splat = H.splat;
23166  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // The vector-effect attribute is not supported in IE <= 11 (at least), so we need
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // diffent logic (#3218)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var supportsVectorEffect = doc.documentElement.style.vectorEffect !== undefined;
23170  
23171  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * The MapAreaPoint object
23174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
23176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Add the map series type
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; seriesType('map', 'scatter', {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; allAreas: true,
23180  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; animation: false, // makes the complex shapes slow
23182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; nullColor: '#f7f7f7',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; borderColor: '#cccccc',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; borderWidth: 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; marker: null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; stickyTracking: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; joinBy: 'hc-key',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; dataLabels: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; formatter: function() { // #2945
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; return this.point.value;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; inside: true, // for the color
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; verticalAlign: 'middle',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; crop: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; overflow: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; padding: 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; turboThreshold: 0,
23199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; tooltip: {
23200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; followPointer: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pointFormat: '{point.name}: {point.value}<br/>'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; states: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; normal: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; animation: true
23206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
23207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; hover: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; brightness: 0.2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; halo: null
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; select: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; color: '#cccccc'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23215  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Prototype members
23217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }, merge(colorSeriesMixin, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; type: 'map',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; supportsDrilldown: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; getExtremesFromAll: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; useMapGeometry: true, // get axis extremes from paths, not values
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; forceDL: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; searchPoint: noop,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; directTouch: true, // When tooltip is not shared, this series (and derivatives) requires direct touch/hover. KD-tree does not apply.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; preserveAspectRatio: true, // X axis and Y axis must have same translation slope
23226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pointArrayMap: ['value'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Get the bounding box of all paths in the map combined.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; getBox: function(paths) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var MAX_VALUE = Number.MAX_VALUE,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; maxX = -MAX_VALUE,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; minX = MAX_VALUE,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; maxY = -MAX_VALUE,
23235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; minY = MAX_VALUE,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; minRange = MAX_VALUE,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; xAxis = this.xAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; yAxis = this.yAxis,
23239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; hasBox;
23240  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Find the bounding box
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each(paths || [], function(point) {
23243  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (point.path) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (typeof point.path === 'string') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point.path = H.splitPath(point.path);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var path = point.path || [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; i = path.length,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; even = false, // while loop reads from the end
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pointMaxX = -MAX_VALUE,
23253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pointMinX = MAX_VALUE,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pointMaxY = -MAX_VALUE,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pointMinY = MAX_VALUE,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; properties = point.properties;
23257  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // The first time a map point is used, analyze its box
23259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (!point._foundBox) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; while (i--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (isNumber(path[i])) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (even) { // even = x
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pointMaxX = Math.max(pointMaxX, path[i]);
23264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pointMinX = Math.min(pointMinX, path[i]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; } else { // odd = Y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pointMaxY = Math.max(pointMaxY, path[i]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pointMinY = Math.min(pointMinY, path[i]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; even = !even;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Cache point bounding box for use to position data labels, bubbles etc
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point._midX = pointMinX + (pointMaxX - pointMinX) *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; (point.middleX || (properties && properties['hc-middle-x']) || 0.5); // pick is slower and very marginally needed
23275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point._midY = pointMinY + (pointMaxY - pointMinY) *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; (point.middleY || (properties && properties['hc-middle-y']) || 0.5);
23277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point._maxX = pointMaxX;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point._minX = pointMinX;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point._maxY = pointMaxY;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point._minY = pointMinY;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point.labelrank = pick(point.labelrank, (pointMaxX - pointMinX) * (pointMaxY - pointMinY));
23282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point._foundBox = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23284  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; maxX = Math.max(maxX, point._maxX);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; minX = Math.min(minX, point._minX);
23287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; maxY = Math.max(maxY, point._maxY);
23288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; minY = Math.min(minY, point._minY);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; minRange = Math.min(point._maxX - point._minX, point._maxY - point._minY, minRange);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; hasBox = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Set the box for the whole series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (hasBox) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.minY = Math.min(minY, pick(this.minY, MAX_VALUE));
23297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.maxY = Math.max(maxY, pick(this.maxY, -MAX_VALUE));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.minX = Math.min(minX, pick(this.minX, MAX_VALUE));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.maxX = Math.max(maxX, pick(this.maxX, -MAX_VALUE));
23300  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // If no minRange option is set, set the default minimum zooming range to 5 times the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // size of the smallest element
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (xAxis && xAxis.options.minRange === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; xAxis.minRange = Math.min(5 * minRange, (this.maxX - this.minX) / 5, xAxis.minRange || MAX_VALUE);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (yAxis && yAxis.options.minRange === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; yAxis.minRange = Math.min(5 * minRange, (this.maxY - this.minY) / 5, yAxis.minRange || MAX_VALUE);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; getExtremes: function() {
23313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Get the actual value extremes for colors
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; Series.prototype.getExtremes.call(this, this.valueData);
23315  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Recalculate box on updated data
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (this.chart.hasRendered && this.isDirtyData) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.getBox(this.options.data);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23320  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.valueMin = this.dataMin;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.valueMax = this.dataMax;
23323  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Extremes for the mock Y axis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.dataMin = this.minY;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.dataMax = this.maxY;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
23328  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Translate the path so that it automatically fits into the plot area box
23331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * @param {Object} path
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
23333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; translatePath: function(path) {
23334  
23335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; even = false, // while loop reads from the end
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; xAxis = series.xAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; yAxis = series.yAxis,
23339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; xMin = xAxis.min,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; xTransA = xAxis.transA,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; xMinPixelPadding = xAxis.minPixelPadding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; yMin = yAxis.min,
23343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; yTransA = yAxis.transA,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; yMinPixelPadding = yAxis.minPixelPadding,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; i,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; ret = []; // Preserve the original
23347  
23348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Do the translation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (path) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; i = path.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; while (i--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (isNumber(path[i])) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; ret[i] = even ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; (path[i] - xMin) * xTransA + xMinPixelPadding :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; (path[i] - yMin) * yTransA + yMinPixelPadding;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; even = !even;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; ret[i] = path[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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23362  
23363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; return ret;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
23365  
23366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Extend setData to join in mapData. If the allAreas option is true, all areas
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * from the mapData are used, and those that don't correspond to a data value
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * are given null values.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; setData: function(data, redraw, animation, updatePoints) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var options = this.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chartOptions = this.chart.options.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; globalMapData = chartOptions && chartOptions.map,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; mapData = options.mapData,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; joinBy = options.joinBy,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; joinByNull = joinBy === null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pointArrayMap = options.keys || this.pointArrayMap,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; dataUsed = [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; mapMap = {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; mapPoint,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; transform,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; mapTransforms = this.chart.mapTransforms,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; props,
23385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; i;
23386  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Collect mapData from chart options if not defined on series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (!mapData && globalMapData) {
23389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; mapData = typeof globalMapData === 'string' ? H.maps[globalMapData] : globalMapData;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23391  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (joinByNull) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; joinBy = '_i';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; joinBy = this.joinBy = splat(joinBy);
23396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (!joinBy[1]) {
23397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; joinBy[1] = joinBy[0];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23399  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Pick up numeric values, add index
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Convert Array point definitions to objects using pointArrayMap
23402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (data) {
23403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each(data, function(val, i) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var ix = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (isNumber(val)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; data[i] = {
23407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; value: val
23408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; } else if (isArray(val)) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; data[i] = {};
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Automatically copy first item to hc-key if there is an extra leading string
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (!options.keys && val.length > pointArrayMap.length && typeof val[0] === 'string') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; data[i]['hc-key'] = val[0];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; ++ix;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Run through pointArrayMap and what's left of the point data array in parallel, copying over the values
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; for (var j = 0; j < pointArrayMap.length; ++j, ++ix) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (pointArrayMap[j]) {
23419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; data[i][pointArrayMap[j]] = val[ix];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (joinByNull) {
23424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; data[i]._i = i;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23428  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.getBox(data);
23430  
23431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Pick up transform definitions for chart
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.chart.mapTransforms = mapTransforms = chartOptions && chartOptions.mapTransforms || mapData && mapData['hc-transform'] || mapTransforms;
23433  
23434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Cache cos/sin of transform rotation angle
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (mapTransforms) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; for (transform in mapTransforms) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (mapTransforms.hasOwnProperty(transform) && transform.rotation) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; transform.cosAngle = Math.cos(transform.rotation);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; transform.sinAngle = Math.sin(transform.rotation);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23443  
23444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (mapData) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (mapData.type === 'FeatureCollection') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.mapTitle = mapData.title;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; mapData = H.geojson(mapData, this.type, this);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23449  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.mapData = mapData;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.mapMap = {};
23452  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; for (i = 0; i < mapData.length; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; mapPoint = mapData[i];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; props = mapPoint.properties;
23456  
23457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; mapPoint._i = i;
23458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Copy the property over to root for faster access
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (joinBy[0] && props && props[joinBy[0]]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; mapPoint[joinBy[0]] = props[joinBy[0]];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; mapMap[mapPoint[joinBy[0]]] = mapPoint;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.mapMap = mapMap;
23465  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Registered the point codes that actually hold data
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (data && joinBy[1]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each(data, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (mapMap[point[joinBy[1]]]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; dataUsed.push(mapMap[point[joinBy[1]]]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (options.allAreas) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.getBox(mapData);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; data = data || [];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Registered the point codes that actually hold data
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (joinBy[1]) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each(data, function(point) {
23482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; dataUsed.push(point[joinBy[1]]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Add those map points that don't correspond to data, which will be drawn as null points
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; dataUsed = '|' + map(dataUsed, function(point) {
23488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; return point && point[joinBy[0]];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }).join('|') + '|'; // String search is faster than array.indexOf
23490  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each(mapData, function(mapPoint) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (!joinBy[0] || dataUsed.indexOf('|' + mapPoint[joinBy[0]] + '|') === -1) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; data.push(merge(mapPoint, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; value: null
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; updatePoints = false; // #5050 - adding all areas causes the update optimization of setData to kick in, even though the point order has changed
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.getBox(dataUsed); // Issue #4784
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; Series.prototype.setData.call(this, data, redraw, animation, updatePoints);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
23505  
23506  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * No graph for the map series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; drawGraph: noop,
23511  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
23513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * We need the points' bounding boxes in order to draw the data labels, so
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * we skip it now and call it from drawPoints instead.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; drawDataLabels: noop,
23517  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
23519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Allow a quick redraw by just translating the area group. Used for zooming and panning
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * in capable browsers.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; doFullTranslate: function() {
23523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; return this.isDirtyData || this.chart.isResizing || this.chart.renderer.isVML || !this.baseTrans;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
23525  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Add the path option for data points. Find the max value for color calculation.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; translate: function() {
23530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; xAxis = series.xAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; yAxis = series.yAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; doFullTranslate = series.doFullTranslate();
23534  
23535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; series.generatePoints();
23536  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each(series.data, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Record the middle point (loosely based on centroid), determined
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // by the middleX and middleY options.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point.plotX = xAxis.toPixels(point._midX, true);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point.plotY = yAxis.toPixels(point._midY, true);
23543  
23544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (doFullTranslate) {
23545  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point.shapeType = 'path';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point.shapeArgs = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; d: series.translatePath(point.path)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; series.translateColors();
23554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
23555  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Get presentational attributes. In the maps series this runs in both
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * styled and non-styled mode, because colors hold data when a colorAxis
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * is used.
23560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; pointAttribs: function(point, state) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var attr;
23563  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; attr = seriesTypes.column.prototype.pointAttribs.call(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this, point, state
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; );
23567  
23568  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Prevent flickering whan called from setState
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (point.isFading) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; delete attr.fill;
23572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23573  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // If vector-effect is not supported, we set the stroke-width on the group element
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // and let all point graphics inherit. That way we don't have to iterate over all
23576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // points to update the stroke-width on zooming. TODO: Check unstyled
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (supportsVectorEffect) {
23578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; attr['vector-effect'] = 'non-scaling-stroke';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; attr['stroke-width'] = 'inherit';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23582  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; return attr;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; /**
23587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Use the drawPoints method of column, that is able to handle simple shapeArgs.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; * Extend it by assigning the tooltip position.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; drawPoints: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; xAxis = series.xAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; yAxis = series.yAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; group = series.group,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; chart = series.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; renderer = chart.renderer,
23597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; scaleX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; scaleY,
23599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; translateX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; translateY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; baseTrans = this.baseTrans,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; transformGroup,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; startTranslateX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; startTranslateY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; startScaleX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; startScaleY;
23607  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Set a group that handles transform during zooming and panning in order to preserve clipping
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // on series.group
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (!series.transformGroup) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; series.transformGroup = renderer.g()
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; .attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; scaleX: 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; scaleY: 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; .add(group);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; series.transformGroup.survive = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23619  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Draw the shapes again
23621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (series.doFullTranslate()) {
23622  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Individual point actions. TODO: Check unstyled.
23624  
23625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (chart.hasRendered) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each(series.points, function(point) {
23627  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Restore state color on update/redraw (#3529)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (point.shapeArgs) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point.shapeArgs.fill = series.pointAttribs(point, point.state).fill;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23634  
23635  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Draw them in transformGroup
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; series.group = series.transformGroup;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; seriesTypes.column.prototype.drawPoints.apply(series);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; series.group = group; // Reset
23640  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Add class names
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; each(series.points, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (point.graphic) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (point.name) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point.graphic.addClass('highcharts-name-' + point.name.replace(/ /g, '-').toLowerCase());
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (point.properties && point.properties['hc-key']) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; point.graphic.addClass('highcharts-key-' + point.properties['hc-key'].toLowerCase());
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
23650  
23651  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
23654  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Set the base for later scale-zooming. The originX and originY properties are the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // axis values in the plot area's upper left corner.
23657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.baseTrans = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; originX: xAxis.min - xAxis.minPixelPadding / xAxis.transA,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; originY: yAxis.min - yAxis.minPixelPadding / yAxis.transA + (yAxis.reversed ? 0 : yAxis.len / yAxis.transA),
23660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; transAX: xAxis.transA,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; transAY: yAxis.transA
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; };
23663  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Reset transformation in case we're doing a full translate (#3789)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; this.transformGroup.animate({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; translateX: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; translateY: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; scaleX: 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; scaleY: 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; });
23671  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Just update the scale and transform for better performance
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; scaleX = xAxis.transA / baseTrans.transAX;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; scaleY = yAxis.transA / baseTrans.transAY;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; translateX = xAxis.toPixels(baseTrans.originX, true);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; translateY = yAxis.toPixels(baseTrans.originY, true);
23678  
23679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; // Handle rounding errors in normal view (#3789)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< '; if (scaleX > 0.99 && scaleX < 1.01 && scaleY > 0.99 && scaleY < 1.01) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleX = 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleY = 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateX = Math.round(translateX);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateY = Math.round(translateY);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
23686  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Animate or move to the new zoom level. In order to prevent
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // flickering as the different transform components are set out of
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // sync (#5991), we run a fake animator attribute and set scale and
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // translation synchronously in the same step.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // A possible improvement to the API would be to handle this in the
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // renderer or animation engine itself, to ensure that when we are
23693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // animating multiple properties, we make sure that each step for
23694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // each property is performed in the same step. Also, for symbols
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // and for transform properties, it should induce a single
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // updateTransform and symbolAttr call.
23697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { transformGroup = this.transformGroup;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (chart.renderer.globalAnimation) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { startTranslateX = transformGroup.attr('translateX');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { startTranslateY = transformGroup.attr('translateY');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { startScaleX = transformGroup.attr('scaleX');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { startScaleY = transformGroup.attr('scaleY');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { transformGroup
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { .attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animator: 0
23706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { .animate({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animator: 1
23709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { step: function(now, fx) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { transformGroup.attr({
23712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateX: startTranslateX +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (translateX - startTranslateX) * fx.pos,
23714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateY: startTranslateY +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (translateY - startTranslateY) * fx.pos,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleX: startScaleX +
23717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (scaleX - startScaleX) * fx.pos,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleY: startScaleY +
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (scaleY - startScaleY) * fx.pos
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
23721  
23722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
23724  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // When dragging, animation is off.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { transformGroup.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateX: translateX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateY: translateY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleX: scaleX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleY: scaleY
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
23736  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Set the stroke-width directly on the group element so the children inherit it. We need to use
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // setAttribute directly, because the stroke-widthSetter method expects a stroke color also to be
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // set.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (!supportsVectorEffect) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.group.element.setAttribute(
23742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'stroke-width',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.options[
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (series.pointAttrToOptions && series.pointAttrToOptions['stroke-width']) || 'borderWidth'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { ] / (scaleX || 1)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
23748  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.drawMapDataLabels();
23750  
23751  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
23753  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Draw the data labels. Special for maps is the time that the data labels are drawn (after points),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * and the clipping of the dataLabelsGroup.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { drawMapDataLabels: function() {
23759  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Series.prototype.drawDataLabels.call(this);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (this.dataLabelsGroup) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.dataLabelsGroup.clip(this.chart.clipRect);
23763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
23765  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Override render to throw in an async call in IE8. Otherwise it chokes on the US counties demo.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { render: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { render = Series.prototype.render;
23772  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Give IE8 some time to breathe.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (series.chart.renderer.isVML && series.data.length > 3000) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { setTimeout(function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { render.call(series);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { render.call(series);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
23782  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * The initial animation for the map series. By default, animation is disabled.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Animation of map shapes is not at all supported in VML browsers.
23786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animate: function(init) {
23788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animation = this.options.animation,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { group = this.group,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { xAxis = this.xAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { yAxis = this.yAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { left = xAxis.pos,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { top = yAxis.pos;
23795  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (chart.renderer.isSVG) {
23797  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (animation === true) {
23799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animation = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { duration: 1000
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
23803  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Initialize the animation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (init) {
23806  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Scale down the group and place it in the center
23808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { group.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateX: left + xAxis.len / 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateY: top + yAxis.len / 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleX: 0.001, // #1499
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleY: 0.001
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
23814  
23815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Run the animation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else {
23817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { group.animate({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateX: left,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateY: top,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleX: 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleY: 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, animation);
23823  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Delete this function to allow it only once
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.animate = 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
23827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Animate in the new series from the clicked point in the old series.
23832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Depends on the drilldown.js module
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animateDrilldown: function(init) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var toBox = this.chart.plotBox,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { level = this.chart.drilldownLevels[this.chart.drilldownLevels.length - 1],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { fromBox = level.bBox,
23838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animationOptions = this.chart.options.drilldown.animation,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scale;
23840  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (!init) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scale = Math.min(fromBox.width / toBox.width, fromBox.height / toBox.height);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { level.shapeArgs = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleX: scale,
23846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleY: scale,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateX: fromBox.x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateY: fromBox.y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
23850  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(this.points, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (point.graphic) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.graphic
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { .attr(level.shapeArgs)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { .animate({
23856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleX: 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleY: 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateX: 0,
23859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateY: 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, animationOptions);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
23863  
23864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.animate = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
23866  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { drawLegendSymbol: LegendSymbolMixin.drawRectangle,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * When drilling up, pull out the individual point graphics from the lower series
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * and animate them into the origin point in the upper series.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animateDrillupFrom: function(level) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes.column.prototype.animateDrillupFrom.call(this, level);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
23878  
23879  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * When drilling up, keep the upper series invisible until the lower series has
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * moved into place
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animateDrillupTo: function(init) {
23885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes.column.prototype.animateDrillupTo.call(this, init);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
23887  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Point class
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }), extend({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Extend the Point object to split paths
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { applyOptions: function(options, x) {
23894  
23895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var point = Point.prototype.applyOptions.call(this, options, x),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series = this.series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { joinBy = series.joinBy,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { mapPoint;
23899  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (series.mapData) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { mapPoint = point[joinBy[1]] !== undefined && series.mapMap[point[joinBy[1]]];
23902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (mapPoint) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // This applies only to bubbles
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (series.xyFromShape) {
23905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.x = mapPoint._midX;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.y = mapPoint._midY;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { extend(point, mapPoint); // copy over properties
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.value = point.value || null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
23913  
23914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return point;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
23916  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Stop the fade-out
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { onMouseOver: function(e) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { clearTimeout(this.colorInterval);
23922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (this.value !== null) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Point.prototype.onMouseOver.call(this, e);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else { //#3401 Tooltip doesn't hide when hovering over null points
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.series.onMouseOut(e);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
23928  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Todo: check unstyled
23930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Custom animation for tweening out the colors. Animation reduces blinking when hovering
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * over islands and coast lines. We run a custom implementation of animation becuase we
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * need to be able to run this independently from other animations like zoom redraw. Also,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * adding color animation to the adapters would introduce almost the same amount of code.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { onMouseOut: function() {
23937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var point = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { start = +new Date(),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { normalColor = color(this.series.pointAttribs(point).fill),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { hoverColor = color(this.series.pointAttribs(point, 'hover').fill),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animation = point.series.options.states.normal.animation,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { duration = animation && (animation.duration || 500);
23943  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (duration && normalColor.rgba.length === 4 && hoverColor.rgba.length === 4 && point.state !== 'select') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { clearTimeout(point.colorInterval);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.colorInterval = setInterval(function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var pos = (new Date() - start) / duration,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { graphic = point.graphic;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (pos > 1) {
23950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pos = 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (graphic) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { graphic.attr('fill', ColorAxis.prototype.tweenColors.call(0, hoverColor, normalColor, pos));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (pos >= 1) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { clearTimeout(point.colorInterval);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, 13);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.isFading = true;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Point.prototype.onMouseOut.call(point);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.isFading = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
23964  
23965  
23966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Zoom the chart to view a specific area point
23968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zoomTo: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var point = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series = point.series;
23972  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.xAxis.setExtremes(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point._minX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point._maxX,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { false
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { );
23978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.yAxis.setExtremes(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point._minY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point._maxY,
23981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { false
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.chart.redraw();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, colorPointMixin));
23986  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (function(H) {
23989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var seriesType = H.seriesType,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes = H.seriesTypes;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // The mapline series type
23998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType('mapline', 'map', {
23999  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { lineWidth: 1,
24001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { fillColor: 'none'
24002  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, {
24004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { type: 'mapline',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { colorProp: 'stroke',
24006  
24007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointAttrToOptions: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'stroke': 'color',
24009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'stroke-width': 'lineWidth'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Get presentational attributes
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointAttribs: function(point, state) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var attr = seriesTypes.map.prototype.pointAttribs.call(this, point, state);
24016  
24017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // The difference from a map series is that the stroke takes the point color
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { attr.fill = this.options.fillColor;
24019  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return attr;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
24022  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { drawLegendSymbol: seriesTypes.line.prototype.drawLegendSymbol
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
24025  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }(Highcharts));
24027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var merge = H.merge,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Point = H.Point,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType = H.seriesType;
24036  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // The mappoint series type
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType('mappoint', 'scatter', {
24039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { dataLabels: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { enabled: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { formatter: function() { // #2945
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return this.point.name;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { crop: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { defer: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { overflow: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { style: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { color: '#000000'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Prototype members
24053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { type: 'mappoint',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { forceDL: true
24056  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Point class
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { applyOptions: function(options, x) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var mergedOptions = options.lat !== undefined && options.lon !== undefined ? merge(options, this.series.chart.fromLatLonToPoint(options)) : options;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return Point.prototype.applyOptions.call(this, mergedOptions, x);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
24063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
24064  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var arrayMax = H.arrayMax,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { arrayMin = H.arrayMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Axis = H.Axis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { color = H.color,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { isNumber = H.isNumber,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { noop = H.noop,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pick = H.pick,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pInt = H.pInt,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Point = H.Point,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Series = H.Series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType = H.seriesType,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes = H.seriesTypes;
24085  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /* ****************************************************************************
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Start Bubble series code *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *****************************************************************************/
24089  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType('bubble', 'scatter', {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { dataLabels: {
24092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { formatter: function() { // #2945
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return this.point.z;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { inside: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { verticalAlign: 'middle'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // displayNegative: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { marker: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // fillOpacity: 0.5,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { lineColor: null, // inherit from series.color
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { lineWidth: 1,
24104  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Avoid offset in Point.setState
24106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius: null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { states: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { hover: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radiusPlus: 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
24111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
24112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { symbol: 'circle'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { minSize: 8,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { maxSize: '20%',
24116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // negativeColor: null,
24117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // sizeBy: 'area'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { softThreshold: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { states: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { hover: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { halo: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { size: 5
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
24126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { tooltip: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointFormat: '({point.x}, {point.y}), Size: {point.z}'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { turboThreshold: 0,
24130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zThreshold: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zoneAxis: 'z'
24132  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Prototype members
24134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointArrayMap: ['y', 'z'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { parallelArrays: ['x', 'y', 'z'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { trackerGroups: ['markerGroup', 'dataLabelsGroup'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { bubblePadding: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zoneAxis: 'z',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { directTouch: true,
24141  
24142  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointAttribs: function(point, state) {
24144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var markerOptions = this.options.marker,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { fillOpacity = pick(markerOptions.fillOpacity, 0.5),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { attr = Series.prototype.pointAttribs.call(this, point, state);
24147  
24148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (fillOpacity !== 1) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { attr.fill = color(attr.fill).setOpacity(fillOpacity).get('rgba');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
24151  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return attr;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
24154  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Get the radius for each point based on the minSize, maxSize and each point's Z value. This
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * must be done prior to Series.translate because the axis needs to add padding in
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * accordance with the point sizes.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { getRadii: function(zMin, zMax, minSize, maxSize) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var len,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { i,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pos,
24165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zData = this.zData,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radii = [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { options = this.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { sizeByArea = options.sizeBy !== 'width',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zThreshold = options.zThreshold,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zRange = zMax - zMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { value,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius;
24173  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Set the shape type and arguments to be picked up in drawPoints
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { for (i = 0, len = zData.length; i < len; i++) {
24176  
24177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { value = zData[i];
24178  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // When sizing by threshold, the absolute value of z determines the size
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // of the bubble.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (options.sizeByAbsoluteValue && value !== null) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { value = Math.abs(value - zThreshold);
24183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zMax = Math.max(zMax - zThreshold, Math.abs(zMin - zThreshold));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zMin = 0;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
24186  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (value === null) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< 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
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else if (value < zMin) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius = minSize / 2 - 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Relative size, a number between 0 and 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pos = zRange > 0 ? (value - zMin) / zRange : 0.5;
24195  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (sizeByArea && pos >= 0) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pos = Math.sqrt(pos);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius = Math.ceil(minSize + pos * (maxSize - minSize)) / 2;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radii.push(radius);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.radii = radii;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
24205  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Perform animation on the bubbles
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animate: function(init) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var animation = this.options.animation;
24211  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (!init) { // run the animation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(this.points, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var graphic = point.graphic,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animationTarget;
24216  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (graphic && graphic.width) { // URL symbols don't have width
24218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animationTarget = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: graphic.x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: graphic.y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { width: graphic.width,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { height: graphic.height
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
24224  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Start values
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { graphic.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: point.plotX,
24228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: point.plotY,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { width: 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { height: 1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
24232  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Run animation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { graphic.animate(animationTarget, animation);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
24237  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // delete this function to allow it only once
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.animate = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
24242  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Extend the base translate method to handle bubble size
24245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translate: function() {
24247  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var i,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { data = this.data,
24250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radii = this.radii;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Run the parent method
24255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes.scatter.prototype.translate.call(this);
24256  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Set the shape type and arguments to be picked up in drawPoints
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { i = data.length;
24259  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { while (i--) {
24261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point = data[i];
24262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius = radii ? radii[i] : 0; // #1737
24263  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (isNumber(radius) && radius >= this.minPxSize / 2) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Shape arguments
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.marker = H.extend(point.marker, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius: radius,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { width: 2 * radius,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { height: 2 * radius
24270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
24271  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Alignment box for the data label
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.dlBox = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: point.plotX - radius,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: point.plotY - radius,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { width: 2 * radius,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { height: 2 * radius
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else { // below zThreshold
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.shapeArgs = point.plotY = point.dlBox = undefined; // #1691
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
24282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
24284  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { alignDataLabel: seriesTypes.column.prototype.alignDataLabel,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { buildKDTree: noop,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { applyZones: noop
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Point class
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, {
24291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { haloPath: function(size) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return Point.prototype.haloPath.call(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { size === 0 ? 0 : (this.marker ? this.marker.radius || 0 : 0) + size // #6067
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { ttBelow: false
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
24299  
24300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Add logic to pad each axis with the amount of pixels
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * necessary to avoid the bubbles to overflow.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Axis.prototype.beforePadding = function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var axis = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { axisLength = this.len,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { chart = this.chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pxMin = 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pxMax = axisLength,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { isXAxis = this.isXAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { dataKey = isXAxis ? 'xData' : 'yData',
24312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { min = this.min,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { extremes = {},
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { smallestSize = Math.min(chart.plotWidth, chart.plotHeight),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zMin = Number.MAX_VALUE,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zMax = -Number.MAX_VALUE,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { range = this.max - min,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { transA = axisLength / range,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { activeSeries = [];
24320  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Handle padding on the second pass, or on redraw
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(this.series, function(series) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var seriesOptions = series.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zData;
24326  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (series.bubblePadding && (series.visible || !chart.options.chart.ignoreHiddenSeries)) {
24328  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Correction for #1673
24330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { axis.allowZoomOutside = true;
24331  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Cache it
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { activeSeries.push(series);
24334  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (isXAxis) { // because X axis is evaluated first
24336  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // For each series, translate the size extremes to pixel values
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(['minSize', 'maxSize'], function(prop) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var length = seriesOptions[prop],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { isPercent = /%$/.test(length);
24341  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { length = pInt(length);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { extremes[prop] = isPercent ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { smallestSize * length / 100 :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { length;
24346  
24347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.minPxSize = extremes.minSize;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Prioritize min size if conflict to make sure bubbles are
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // always visible. #5873
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.maxPxSize = Math.max(extremes.maxSize, extremes.minSize);
24352  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Find the min and max Z
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zData = series.zData;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (zData.length) { // #1735
24356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zMin = pick(seriesOptions.zMin, Math.min(
24357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zMin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Math.max(
24359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { arrayMin(zData),
24360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesOptions.displayNegative === false ? seriesOptions.zThreshold : -Number.MAX_VALUE
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { )
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { ));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zMax = pick(seriesOptions.zMax, Math.max(zMax, arrayMax(zData)));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
24368  
24369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(activeSeries, function(series) {
24370  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var data = series[dataKey],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { i = data.length,
24373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius;
24374  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (isXAxis) {
24376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.getRadii(zMin, zMax, series.minPxSize, series.maxPxSize);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
24378  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (range > 0) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { while (i--) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (isNumber(data[i]) && axis.dataMin <= data[i] && data[i] <= axis.dataMax) {
24382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius = series.radii[i];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pxMin = Math.min(((data[i] - min) * transA) - radius, pxMin);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pxMax = Math.max(((data[i] - min) * transA) + radius, pxMax);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
24389  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (activeSeries.length && range > 0 && !this.isLog) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pxMax -= axisLength;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { transA *= (axisLength + pxMin - pxMax) / axisLength;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each([
24394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { ['min', 'userMin', pxMin],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { ['max', 'userMax', pxMax]
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { ], function(keys) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (pick(axis.options[keys[0]], axis[keys[1]]) === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { axis[keys[0]] += keys[2] / transA;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
24403  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /* ****************************************************************************
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * End Bubble series code *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *****************************************************************************/
24407  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (function(H) {
24410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var merge = H.merge,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Point = H.Point,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType = H.seriesType,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes = H.seriesTypes;
24419  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // The mapbubble series type
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (seriesTypes.bubble) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType('mapbubble', 'bubble', {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animationLimit: 500,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { tooltip: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointFormat: '{point.name}: {point.z}'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
24428  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Prototype members
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, {
24431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { xyFromShape: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { type: 'mapbubble',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointArrayMap: ['z'], // If one single value is passed, it is interpreted as z
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Return the map area identified by the dataJoinBy option
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { getMapData: seriesTypes.map.prototype.getMapData,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { getBox: seriesTypes.map.prototype.getBox,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { setData: seriesTypes.map.prototype.setData
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Point class
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { applyOptions: function(options, x) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var point;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (options && options.lat !== undefined && options.lon !== undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point = Point.prototype.applyOptions.call(
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { merge(options, this.series.chart.fromLatLonToPoint(options)),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { );
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point = seriesTypes.map.prototype.pointClass.prototype.applyOptions.call(this, options, x);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return point;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { ttBelow: false
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * License: www.highcharts.com/license
24466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var colorPointMixin = H.colorPointMixin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { colorSeriesMixin = H.colorSeriesMixin,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { LegendSymbolMixin = H.LegendSymbolMixin,
24471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { merge = H.merge,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { noop = H.noop,
24473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pick = H.pick,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Series = H.Series,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType = H.seriesType,
24476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes = H.seriesTypes;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // The Heatmap series type
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType('heatmap', 'scatter', {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animation: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { borderWidth: 0,
24482  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { nullColor: '#f7f7f7',
24484  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { dataLabels: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { formatter: function() { // #2945
24487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return this.point.value;
24488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { inside: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { verticalAlign: 'middle',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { crop: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { overflow: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { padding: 0 // #3837
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { marker: null,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointRange: null, // dynamically set to colsize by default
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { tooltip: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointFormat: '{point.x}, {point.y}: {point.value}<br/>'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { states: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { normal: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animation: true
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { hover: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { halo: false, // #3406, halo is not required on heatmaps
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { brightness: 0.2
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, merge(colorSeriesMixin, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointArrayMap: ['y', 'value'],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { hasPointSpecificOptions: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { supportsDrilldown: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { getExtremesFromAll: true,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { directTouch: true,
24515  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Override the init method to add point ranges on both axes.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { init: function() {
24520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var options;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes.scatter.prototype.init.apply(this, arguments);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { options = this.options;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { options.pointRange = pick(options.pointRange, options.colsize || 1); // #3758, prevent resetting in setData
24525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.yAxis.axisPointRange = options.rowsize || 1; // general point range
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translate: function() {
24528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var series = this,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { options = series.options,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { xAxis = series.xAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { yAxis = series.yAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { between = function(x, a, b) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return Math.min(Math.max(a, x), b);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
24535  
24536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.generatePoints();
24537  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(series.points, function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var xPad = (options.colsize || 1) / 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { yPad = (options.rowsize || 1) / 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< 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),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y1 = between(Math.round(yAxis.translate(point.y - yPad, 0, 1, 0, 1)), -yAxis.len, 2 * yAxis.len),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y2 = between(Math.round(yAxis.translate(point.y + yPad, 0, 1, 0, 1)), -yAxis.len, 2 * yAxis.len);
24545  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Set plotX and plotY for use in K-D-Tree and more
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.plotX = point.clientX = (x1 + x2) / 2;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.plotY = (y1 + y2) / 2;
24549  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.shapeType = 'rect';
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.shapeArgs = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: Math.min(x1, x2),
24553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: Math.min(y1, y2),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { width: Math.abs(x2 - x1),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { height: Math.abs(y2 - y1)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
24558  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.translateColors();
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { drawPoints: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes.column.prototype.drawPoints.call(this);
24563  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(this.points, function(point) {
24565  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.graphic.attr(this.colorAttribs(point));
24567  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, this);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animate: noop,
24571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { getBox: noop,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { drawLegendSymbol: LegendSymbolMixin.drawRectangle,
24573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { alignDataLabel: seriesTypes.column.prototype.alignDataLabel,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { getExtremes: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Get the extremes from the value data
24576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Series.prototype.getExtremes.call(this, this.valueData);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.valueMin = this.dataMin;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.valueMax = this.dataMax;
24579  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Get the extremes from the y data
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Series.prototype.getExtremes.call(this);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
24583  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }), colorPointMixin);
24585  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
24589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * License: www.highcharts.com/license
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var Chart = H.Chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { extend = H.extend,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { format = H.format,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { merge = H.merge,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { win = H.win,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { wrap = H.wrap;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Test for point in polygon. Polygon defined as array of [x,y] points.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { function pointInPolygon(point, polygon) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var i,
24605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { j,
24606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { rel1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { rel2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { c = false,
24609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x = point.x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y = point.y;
24611  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { for (i = 0, j = polygon.length - 1; i < polygon.length; j = i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { rel1 = polygon[i][1] > y;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { rel2 = polygon[j][1] > y;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< 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])) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { c = !c;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
24619  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return c;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
24622  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Get point from latLon using specified transform definition
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Chart.prototype.transformFromLatLon = function(latLon, transform) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (win.proj4 === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { H.error(21);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: null
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
24634  
24635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var projected = win.proj4(transform.crs, [latLon.lon, latLon.lat]),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { cosAngle = transform.cosAngle || (transform.rotation && Math.cos(transform.rotation)),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { sinAngle = transform.sinAngle || (transform.rotation && Math.sin(transform.rotation)),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { rotated = transform.rotation ? [projected[0] * cosAngle + projected[1] * sinAngle, -projected[0] * sinAngle + projected[1] * cosAngle] : projected;
24639  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: ((rotated[0] - (transform.xoffset || 0)) * (transform.scale || 1) + (transform.xpan || 0)) * (transform.jsonres || 1) + (transform.jsonmarginX || 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: (((transform.yoffset || 0) - rotated[1]) * (transform.scale || 1) + (transform.ypan || 0)) * (transform.jsonres || 1) - (transform.jsonmarginY || 0)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
24645  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Get latLon from point using specified transform definition
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Chart.prototype.transformToLatLon = function(point, transform) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (win.proj4 === undefined) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { H.error(21);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
24654  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var normalized = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: ((point.x - (transform.jsonmarginX || 0)) / (transform.jsonres || 1) - (transform.xpan || 0)) / (transform.scale || 1) + (transform.xoffset || 0),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: ((-point.y - (transform.jsonmarginY || 0)) / (transform.jsonres || 1) + (transform.ypan || 0)) / (transform.scale || 1) + (transform.yoffset || 0)
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { cosAngle = transform.cosAngle || (transform.rotation && Math.cos(transform.rotation)),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { sinAngle = transform.sinAngle || (transform.rotation && Math.sin(transform.rotation)),
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Note: Inverted sinAngle to reverse rotation direction
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { projected = win.proj4(transform.crs, 'WGS84', transform.rotation ? {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: normalized.x * cosAngle + normalized.y * -sinAngle,
24664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: normalized.x * sinAngle + normalized.y * cosAngle
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } : normalized);
24666  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { lat: projected.y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { lon: projected.x
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Chart.prototype.fromPointToLatLon = function(point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var transforms = this.mapTransforms,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { transform;
24676  
24677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (!transforms) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { H.error(22);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
24681  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { for (transform in transforms) {
24683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (transforms.hasOwnProperty(transform) && transforms[transform].hitZone &&
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointInPolygon({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: point.x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: -point.y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, transforms[transform].hitZone.coordinates[0])) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return this.transformToLatLon(point, transforms[transform]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
24691  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return this.transformToLatLon(point, transforms['default']); // eslint-disable-line dot-notation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
24694  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Chart.prototype.fromLatLonToPoint = function(latLon) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var transforms = this.mapTransforms,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { transform,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { coords;
24699  
24700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (!transforms) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { H.error(22);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: 0,
24704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: null
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
24707  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { for (transform in transforms) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (transforms.hasOwnProperty(transform) && transforms[transform].hitZone) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { coords = this.transformFromLatLon(latLon, transforms[transform]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (pointInPolygon({
24712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: coords.x,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: -coords.y
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, transforms[transform].hitZone.coordinates[0])) {
24715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return coords;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
24719  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return this.transformFromLatLon(latLon, transforms['default']); // eslint-disable-line dot-notation
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
24722  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Convert a geojson object to map data of a given Highcharts type (map, mappoint or mapline).
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { H.geojson = function(geojson, hType, series) {
24727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var mapData = [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { path = [],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { polygonToPath = function(polygon) {
24730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var i,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { len = polygon.length;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { path.push('M');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) { for (i = 0; i < len; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { if (i === 1) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { path.push('L');
24736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { path.push(polygon[i][0], -polygon[i][1]);
24738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { };
24740  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { hType = hType || 'map';
24742  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { each(geojson.features, function(feature) {
24744  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { var geometry = feature.geometry,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { type = geometry.type,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { coordinates = geometry.coordinates,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { properties = feature.properties,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { point;
24750  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { path = [];
24752  
24753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { if (hType === 'map' || hType === 'mapbubble') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { if (type === 'Polygon') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { each(coordinates, polygonToPath);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { path.push('Z');
24757  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { } else if (type === 'MultiPolygon') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { each(coordinates, function(items) {
24760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { each(items, polygonToPath);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { });
24762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { path.push('Z');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
24764  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { if (path.length) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { point = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { path: path
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
24770  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { } else if (hType === 'mapline') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { if (type === 'LineString') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { polygonToPath(coordinates);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { } else if (type === 'MultiLineString') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { each(coordinates, polygonToPath);
24776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
24777  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { if (path.length) {
24779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { point = {
24780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { path: path
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { };
24782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
24783  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { } else if (hType === 'mappoint') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { if (type === 'Point') {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { point = {
24787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { x: coordinates[0],
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { y: -coordinates[1]
24789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
24791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { if (point) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { mapData.push(extend(point, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { name: properties.name || properties.NAME,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { properties: properties
24796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
24798  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { });
24800  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // Create a credits text that includes map source, to be picked up in Chart.addCredits
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { if (series && geojson.copyrightShort) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { series.chart.mapCredits = format(series.chart.options.credits.mapText, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { geojson: geojson
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { series.chart.mapCreditsFull = format(series.chart.options.credits.mapTextFull, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { geojson: geojson
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
24810  
24811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { return mapData;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { };
24813  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { * Override addCredits to include map source by default
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { wrap(Chart.prototype, 'addCredits', function(proceed, credits) {
24818  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { credits = merge(true, this.options.credits, credits);
24820  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // Disable credits link if map credits enabled. This to allow for in-text anchors.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { if (this.mapCredits) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { credits.href = null;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
24825  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { proceed.call(this, credits);
24827  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // Add full map credits to hover
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { if (this.credits && this.mapCreditsFull) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { this.credits.attr({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { title: this.mapCreditsFull
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { });
24835  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }(Highcharts));
24837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { (function(H) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { * (c) 2010-2017 Torstein Honsi
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { *
24841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { * License: www.highcharts.com/license
24842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { var Chart = H.Chart,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { defaultOptions = H.defaultOptions,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { each = H.each,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { extend = H.extend,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { merge = H.merge,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { pick = H.pick,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { Renderer = H.Renderer,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { SVGRenderer = H.SVGRenderer,
24851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { VMLRenderer = H.VMLRenderer;
24852  
24853  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // Add language
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { extend(defaultOptions.lang, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { zoomIn: 'Zoom in',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { zoomOut: 'Zoom out'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { });
24859  
24860  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // Set the default map navigation options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { defaultOptions.mapNavigation = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { buttonOptions: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { alignTo: 'plotBox',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { align: 'left',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { verticalAlign: 'top',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { x: 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { width: 18,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { height: 18,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { padding: 5,
24871  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { style: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { fontSize: '15px',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { fontWeight: 'bold'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { theme: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { 'stroke-width': 1,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { 'text-align': 'center'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
24880  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { buttons: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { zoomIn: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { onclick: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { this.mapZoom(0.5);
24886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { text: '+',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { y: 0
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { zoomOut: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { onclick: function() {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { this.mapZoom(2);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { text: '-',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { y: 28
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { mouseWheelSensitivity: 1.1
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // enabled: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // enableButtons: null, // inherit from enabled
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // enableTouchZoom: null, // inherit from enabled
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // enableDoubleClickZoom: null, // inherit from enabled
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // enableDoubleClickZoomTo: false
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // enableMouseWheelZoom: null, // inherit from enabled
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { };
24906  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { * Utility for reading SVG paths directly.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { H.splitPath = function(path) {
24911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { var i;
24912  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // Move letters apart
24914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { path = path.replace(/([A-Za-z])/g, ' $1 ');
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // Trim
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { path = path.replace(/^\s*/, '').replace(/\s*$/, '');
24917  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // Split on spaces and commas
24919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { path = path.split(/[ ,]+/); // Extra comma to escape gulp.scripts task
24920  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // Parse numbers
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { for (i = 0; i < path.length; i++) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { if (!/[a-zA-Z]/.test(path[i])) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { path[i] = parseFloat(path[i]);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { return path;
24928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { };
24929  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // A placeholder for map definitions
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { H.maps = {};
24932  
24933  
24934  
24935  
24936  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // Create symbols for the zoom buttons
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { function selectiveRoundedRect(x, y, w, h, rTopLeft, rTopRight, rBottomRight, rBottomLeft) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { return [
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { 'M', x + rTopLeft, y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // top side
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { 'L', x + w - rTopRight, y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // top right corner
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { 'C', x + w - rTopRight / 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { y, x + w,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { y + rTopRight / 2, x + w, y + rTopRight,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // right side
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { 'L', x + w, y + h - rBottomRight,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // bottom right corner
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { 'C', x + w, y + h - rBottomRight / 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { x + w - rBottomRight / 2, y + h,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { x + w - rBottomRight, y + h,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // bottom side
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { 'L', x + rBottomLeft, y + h,
24955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // bottom left corner
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { 'C', x + rBottomLeft / 2, y + h,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { x, y + h - rBottomLeft / 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { x, y + h - rBottomLeft,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // left side
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { 'L', x, y + rTopLeft,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // top left corner
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { 'C', x, y + rTopLeft / 2,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { x + rTopLeft / 2, y,
24964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { x + rTopLeft, y,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { 'Z'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { ];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { SVGRenderer.prototype.symbols.topbutton = function(x, y, w, h, attr) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { return selectiveRoundedRect(x - 1, y - 1, w, h, attr.r, attr.r, 0, 0);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { };
24971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { SVGRenderer.prototype.symbols.bottombutton = function(x, y, w, h, attr) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { return selectiveRoundedRect(x - 1, y - 1, w, h, 0, 0, attr.r, attr.r);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { };
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // The symbol callbacks are generated on the SVGRenderer object in all browsers. Even
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // VML browsers need this in order to generate shapes in export. Now share
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // them with the VMLRenderer.
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { if (Renderer === VMLRenderer) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { each(['topbutton', 'bottombutton'], function(shape) {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { VMLRenderer.prototype.symbols[shape] = SVGRenderer.prototype.symbols[shape];
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { });
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
24982  
24983  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { /**
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { * A wrapper for Chart with all the default values for a Map
24986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { */
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { H.Map = H.mapChart = function(a, b, c) {
24988  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { var hasRenderToArg = typeof a === 'string' || a.nodeName,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { options = arguments[hasRenderToArg ? 1 : 0],
24991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { hiddenAxis = {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { endOnTick: false,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { visible: false,
24994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { minPadding: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { maxPadding: 0,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { startOnTick: false
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { seriesOptions,
24999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { defaultCreditsOptions = H.getOptions().credits;
25000  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { /* For visual testing
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { hiddenAxis.gridLineWidth = 1;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { hiddenAxis.gridZIndex = 10;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { hiddenAxis.tickPositions = undefined;
25005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // */
25006  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { // Don't merge the data
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { seriesOptions = options.series;
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { options.series = null;
25010  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { options = merge({
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { chart: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { panning: 'xy',
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { type: 'map'
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { credits: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { mapText: pick(defaultCreditsOptions.mapText, ' \u00a9 <a href="{geojson.copyrightUrl}">{geojson.copyrightShort}</a>'),
25018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { mapTextFull: pick(defaultCreditsOptions.mapTextFull, '{geojson.copyright}')
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { tooltip: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { followTouchMove: false
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; 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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { xAxis: hiddenAxis,
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { yAxis: merge(hiddenAxis, {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { reversed: true
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { })
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { },
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { options, // user's options
25029  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { { // forced options
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { chart: {
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { inverted: false,
25033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { alignTicks: false
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }
25036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { );
25037  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { options.series = seriesOptions;
25039  
25040  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { return hasRenderToArg ?
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { new Chart(a, options, c) :
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { new Chart(options, b);
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { };
25045  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }(Highcharts));
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { (function() {
25048  
25049  
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { }());
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) { return Highcharts
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="(http[^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /< tspans.length; i++) {<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.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 : ret);<= 0.5 && bottom >< 2,< minPointLength) {< 360;< panMin,< 0 && distMax < 0) {< 0) {< 1 ? this : xAxis;<= to)) {< axisPos) {< ';< 1.01 && scaleY >< 1.01) {< len; i++) {}));